On this page
function template_preprocess_dashboard_admin_display_form
template_preprocess_dashboard_admin_display_form(&$variables)
Preprocesses variables for block-admin-display-form.tpl.php.
File
- modules/dashboard/dashboard.module, line 419
- Provides a dashboard page in the administrative interface.
Code
function template_preprocess_dashboard_admin_display_form(&$variables) {
template_preprocess_block_admin_display_form($variables);
if (isset($variables['block_regions'][BLOCK_REGION_NONE])) {
$variables['block_regions'][BLOCK_REGION_NONE] = t('Other blocks');
}
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!dashboard!dashboard.module/function/template_preprocess_dashboard_admin_display_form/7.x