Projet

Général

Profil

Paste
Télécharger (2,65 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / bootstrap / theme / block / block-admin-display-form.tpl.php @ 87dbc3bf

1
<?php
2
/**
3
 * @file
4
 * Default theme implementation to configure blocks.
5
 *
6
 * Available variables:
7
 * - $block_regions: An array of regions. Keyed by name with the title as value.
8
 * - $block_listing: An array of blocks keyed by region and then delta.
9
 * - $form_submit: Form submit button.
10
 *
11
 * Each $block_listing[$region] contains an array of blocks for that region.
12
 *
13
 * Each $data in $block_listing[$region] contains:
14
 * - $data->region_title: Region title for the listed block.
15
 * - $data->block_title: Block title.
16
 * - $data->region_select: Drop-down menu for assigning a region.
17
 * - $data->weight_select: Drop-down menu for setting weights.
18
 * - $data->configure_link: Block configuration link.
19
 * - $data->delete_link: For deleting user added blocks.
20
 *
21
 * @see template_preprocess_block_admin_display_form()
22
 * @see theme_block_admin_display()
23
 *
24
 * @ingroup themeable
25
 */
26
?>
27
<?php
28
  // Add table javascript.
29
  drupal_add_js('misc/tableheader.js');
30
  drupal_add_js(drupal_get_path('module', 'block') . '/block.js');
31
  foreach ($block_regions as $region => $title):
32
    drupal_add_tabledrag('blocks', 'match', 'sibling', 'block-region-select', 'block-region-' . $region, NULL, FALSE);
33
    drupal_add_tabledrag('blocks', 'order', 'sibling', 'block-weight', 'block-weight-' . $region);
34
  endforeach;
35
?>
36
<table id="blocks" class="table table-hover sticky-enabled">
37
  <thead>
38
    <tr>
39
      <th><?php print t('Block'); ?></th>
40
      <th><?php print t('Region'); ?></th>
41
      <th><?php print t('Weight'); ?></th>
42
      <th colspan="2"><?php print t('Operations'); ?></th>
43
    </tr>
44
  </thead>
45
  <tbody>
46
    <?php $row = 0; ?>
47
    <?php foreach ($block_regions as $region => $title): ?>
48
      <tr class="active region-title region-title-<?php print $region?>">
49
        <td colspan="5"><?php print $title; ?></td>
50
      </tr>
51
      <tr class="region-message region-<?php print $region?>-message <?php print empty($block_listing[$region]) ? 'region-empty' : 'region-populated'; ?>">
52
        <td colspan="5"><em><?php print t('No blocks in this region'); ?></em></td>
53
      </tr>
54
      <?php foreach ($block_listing[$region] as $delta => $data): ?>
55
      <tr class="draggable <?php print $row % 2 == 0 ? 'odd' : 'even'; ?><?php print $data->row_class ? ' ' . $data->row_class : ''; ?>">
56
        <td class="block"><?php print $data->block_title; ?></td>
57
        <td><?php print $data->region_select; ?></td>
58
        <td><?php print $data->weight_select; ?></td>
59
        <td><?php print $data->configure_link; ?></td>
60
        <td><?php print $data->delete_link; ?></td>
61
      </tr>
62
      <?php $row++; ?>
63
      <?php endforeach; ?>
64
    <?php endforeach; ?>
65
  </tbody>
66
</table>
67

    
68
<?php print $form_submit; ?>