- drupal
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.
- $throttle: TRUE or FALSE depending on throttle module being enabled.
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->throttle_check: Checkbox to enable throttling.
- $data->configure_link: Block configuration link.
- $data->delete_link: For deleting user added blocks.
See also
template_preprocess_block_admin_display_form()
theme_block_admin_display()
View source
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 | |