1
|
<?php
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
|
7
|
|
8
|
$count = 0;
|
9
|
?>
|
10
|
|
11
|
<p><?php print t('Enable or disable plugins and select the order of the tabs on the frontend. Some plugins do not provide tabs in the frontend, but only add extra functionality.'); ?></p>
|
12
|
|
13
|
<div id="plugins-configuration-form">
|
14
|
|
15
|
<table id="plugins-configuration" class="sticky-enabled">
|
16
|
<thead>
|
17
|
<tr>
|
18
|
<th><?php print t('Plugin'); ?></th>
|
19
|
<th><?php print t('Enabled'); ?></th>
|
20
|
<th><?php print t('Weight'); ?></th>
|
21
|
</tr>
|
22
|
</thead>
|
23
|
|
24
|
<tbody>
|
25
|
<?php foreach ($rows as $row): ?>
|
26
|
|
27
|
<tr class="<?php print $count % 2 == 0 ? 'odd' : 'even'; ?> draggable property-row">
|
28
|
<td><?php print $row->name; ?></td>
|
29
|
<td><?php print $row->status; ?></td>
|
30
|
<td><?php print $row->weight; ?></td>
|
31
|
</tr>
|
32
|
|
33
|
<?php endforeach; ?>
|
34
|
</tbody>
|
35
|
</table>
|
36
|
|
37
|
<?php print $submit; ?>
|
38
|
|
39
|
</div>
|