Projet

Général

Profil

Paste
Télécharger (944 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / sweaver / sweaver-plugin-config-plugins.tpl.php @ 87dbc3bf

1
<?php
2

    
3
/**
4
 * @file
5
 * Template file for the plugins configuration form.
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>