On this page
function theme_dashboard_region
theme_dashboard_region($variables)
Returns HTML for a generic dashboard region.
Parameters
$variables: An associative array containing:
- element: A render element containing the properties of the dashboard region element, #dashboard_region and #children.
Related topics
File
- modules/dashboard/dashboard.module, line 625
- Provides a dashboard page in the administrative interface.
Code
function theme_dashboard_region($variables) {
extract($variables);
$output = '<div id="' . $element['#dashboard_region'] . '" class="dashboard-region">';
$output .= '<div class="region clearfix">';
$output .= $element['#children'];
// Closing div.region
$output .= '</div>';
// Closing div.dashboard-region
$output .= '</div>';
return $output;
}
© 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/theme_dashboard_region/7.x