function hook_dashboard_regions

hook_dashboard_regions()

Add regions to the dashboard.

Return value

An array whose keys are the names of the dashboard regions and whose values are the titles that will be displayed in the blocks administration interface. The keys are also used as theme wrapper functions.

Related topics

File

modules/dashboard/dashboard.api.php, line 21
Hooks provided by the Dashboard module.

Code

function hook_dashboard_regions() {
  // Define a new dashboard region. Your module can also then define
  // theme_mymodule_dashboard_region() as a theme wrapper function to control
  // the region's appearance.
  return array('mymodule_dashboard_region' => "My module's dashboard region");
}

© 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.api.php/function/hook_dashboard_regions/7.x