function theme_dashboard_disabled_blocks
Returns HTML for disabled blocks, for use in dashboard customization mode.
Parameters
$variables: An associative array containing:
- blocks: An array of block objects from _block_rehash().
Related topics
1 theme call to theme_dashboard_disabled_blocks()
- dashboard_show_disabled in modules/
dashboard/ dashboard.module - Ajax callback: Shows disabled blocks in the dashboard customization mode.
File
-
modules/
dashboard/ dashboard.module, line 646
Code
function theme_dashboard_disabled_blocks($variables) {
extract($variables);
$output = '<div class="canvas-content"><p>' . t('Drag and drop these blocks to the columns below. Changes are automatically saved. More options are available on the <a href="@dashboard-url">configuration page</a>.', array(
'@dashboard-url' => url('admin/dashboard/configure'),
)) . '</p>';
$output .= '<div id="disabled-blocks"><div class="region disabled-blocks clearfix">';
foreach ($blocks as $block) {
$output .= theme('dashboard_disabled_block', array(
'block' => $block,
));
}
$output .= '<div class="clearfix"></div>';
$output .= '<p class="dashboard-add-other-blocks">' . l(t('Add other blocks'), 'admin/dashboard/configure') . '</p>';
$output .= '</div></div></div>';
return $output;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.