function dashboard_region_descriptions

dashboard_region_descriptions()

Returns an array of dashboard region descriptions, keyed by region name.

File

modules/dashboard/dashboard.module, line 463
Provides a dashboard page in the administrative interface.

Code

function dashboard_region_descriptions() {
  $regions = module_invoke_all('dashboard_regions');
  drupal_alter('dashboard_regions', $regions);
  return $regions;
}

© 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/dashboard_region_descriptions/7.x