block-admin-display-form.tpl.php

Default theme implementation to configure blocks.

Available variables:

  • $block_regions: An array of regions. Keyed by name with the title as value.
  • $block_listing: An array of blocks keyed by region and then delta.
  • $form_submit: Form submit button.

Each $block_listing[$region] contains an array of blocks for that region.

Each $data in $block_listing[$region] contains:

  • $data->region_title: Region title for the listed block.
  • $data->block_title: Block title.
  • $data->region_select: Drop-down menu for assigning a region.
  • $data->weight_select: Drop-down menu for setting weights.
  • $data->operations: Block operations.

See also

template_preprocess_block_admin_display_form()

theme_block_admin_display()

File

drupal/core/modules/block/templates/block-admin-display-form.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation to configure blocks.
 *
 * Available variables:
 * - $block_regions: An array of regions. Keyed by name with the title as value.
 * - $block_listing: An array of blocks keyed by region and then delta.
 * - $form_submit: Form submit button.
 *
 * Each $block_listing[$region] contains an array of blocks for that region.
 *
 * Each $data in $block_listing[$region] contains:
 * - $data->region_title: Region title for the listed block.
 * - $data->block_title: Block title.
 * - $data->region_select: Drop-down menu for assigning a region.
 * - $data->weight_select: Drop-down menu for setting weights.
 * - $data->operations: Block operations.
 *
 * @see template_preprocess_block_admin_display_form()
 * @see theme_block_admin_display()
 *
 * @ingroup themeable
 */
?>
<table id="blocks" class="sticky-enabled">
  <thead>
    <tr>
      <th><?php

print t('Block');
?></th>
      <th><?php

print t('Region');
?></th>
      <th><?php

print t('Weight');
?></th>
      <th><?php

print t('Operations');
?></th>
    </tr>
  </thead>
  <tbody>
    <?php

$row = 0;
?>
    <?php

foreach ($block_regions as $region => $title) {
  ?>
      <tr class="region-title region-title-<?php

  print $region;
  ?>">
        <td colspan="5"><?php

  print $title;
  ?></td>
      </tr>
      <tr class="region-message region-<?php

  print $region;
  ?>-message <?php

  print empty($block_listing[$region]) ? 'region-empty' : 'region-populated';
  ?>">
        <td colspan="5"><em><?php

  print t('No blocks in this region');
  ?></em></td>
      </tr>
      <?php

  foreach ($block_listing[$region] as $delta => $data) {
    ?>
      <tr class="draggable <?php

    print $row % 2 == 0 ? 'odd' : 'even';
    print $data->row_class ? ' ' . $data->row_class : '';
    ?>">
        <td class="block"><?php

    print $data->block_title;
    ?></td>
        <td><?php

    print $data->region_select;
    ?></td>
        <td><?php

    print $data->weight_select;
    ?></td>
        <td><?php

    print $data->operations;
    ?></td>
      </tr>
      <?php

    $row++;
    ?>
      <?php

  }
  ?>
    <?php

}
?>
  </tbody>
</table>

<?php

print $form_submit;

Related topics