aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/check_integrity.tpl
blob: f11e76ec63e036cc54c945f2cd03e2b2e8027fb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<dl>
  <dt>{'Check integrity'|@translate}</dt>
  <dd>
    <ul>
      <form method="post" name="c13y" id="c13y" action="">
      <fieldset>
        <table class="table2">
          <tr class="throw">
            <th></th>
            <th>{'Anomaly'|@translate}</th>
            <th>{'Correction'|@translate}</th>
          </tr>
          {if isset($c13y_list)}
            {foreach from=$c13y_list item=c13y name=c13y_loop}
              <tr class="{if $smarty.foreach.c13y_loop.index is odd}row1{else}row2{/if}">
                <td>
                  {if $c13y.can_select}
                    <input type="checkbox" name="c13y_selection[]" value="{$c13y.id}" id="c13y_selection-{$c13y.id}"><label for="c13y_selection-{$c13y.id}"></label>
                  {/if}
                </td>
                <td><label for="c13y_selection-{$c13y.id}">{$c13y.anomaly}</label></td>
                <td>
                  <label for="c13y_selection-{$c13y.id}">
                    {if $c13y.show_ignore_msg}
                      {'The anomaly will be ignored until next application version'|@translate}
                      <br>
                      {'Correction the anomaly will cancel the fact that it\'s ignored'|@translate}
                    {/if}
                    {if $c13y.show_correction_fct}
                      {'Automatic correction'|@translate}
                    {/if}
                    {if $c13y.show_correction_bad_fct}
                      {'Impossible automatic correction'|@translate}
                    {/if}
                    {if $c13y.show_correction_success_fct}
                      {'Correction applied with success'|@translate}
                    {/if}
                    {if !empty($c13y.correction_error_fct)}
                      {'Correction applied with error'|@translate}
                      <br>
                      {$c13y.c13y.correction_error_fct}
                    {/if}
                    {if !empty($c13y.correction_msg)}
                      {if $c13y.show_correction_success_fct or !empty($c13y.correction_error_fct) or $c13y.show_correction_fct or $c13y.show_correction_bad_fct }
                        <br>
                      {/if}
                      {$c13y.correction_msg|@nl2br}
                    {/if}
                  </label>
                </td>
              </tr>
            {/foreach}
          {/if}
        </table>

        <p>
			{literal}
			<script type="text/javascript">
			jQuery(document).ready(function(){

				jQuery("#checkAllLink").click(function () {
					jQuery("#c13y input[type=checkbox]").attr('checked', true);
					return false;
				});

				jQuery("#uncheckAllLink").click(function () {
					jQuery("#c13y input[type=checkbox]").attr('checked', false);
					return false;
				});

			});
			function DeselectAll( formulaire )
			{
				var elts = formulaire.elements;
				for(var i=0; i <elts.length; i++)
				{
					if (elts[i].type=='checkbox')
						elts[i].checked = false;
				}
			}
			</script>
			{/literal}
          {if $c13y_show_submit_ignore}
              <a href="#" id="checkAllLink">{'Check all'|@translate}</a>
            / <a href="#" id="uncheckAllLink">{'Uncheck all'|@translate}</a>
          {/if}
          {if isset($c13y_do_check)}
            / <a href="#" onclick="DeselectAll(document.getElementById('c13y'));
            {foreach from=$c13y_do_check item=ID}
              document.getElementById('c13y_selection-{$ID}').checked = true;
            {/foreach}
            return false;">{'Check automatic corrections'|@translate}</a>
          {/if}
        </p>

        <p>
          {if $c13y_show_submit_automatic_correction}
            <input class="submit" type="submit" value="{'Apply selected corrections'|@translate}" name="Apply selected corrections">
          {/if}
          {if $c13y_show_submit_ignore}
            <input class="submit" type="submit" value="{'Ignore selected anomalies'|@translate}" name="Ignore selected anomalies">
          {/if}
          <input class="submit" type="submit" value="{'Refresh'|@translate}" name="Refresh">
          </p>

      </fieldset>
      </form>
    </ul>
  </dd>