Returns an array of dashboard region names.

1 call to dashboard_regions()
dashboard_system_info_alter in modules/dashboard/dashboard.module
Implements hook_system_info_alter().

File

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

Code

function dashboard_regions() {
  $regions =& drupal_static(__FUNCTION__);
  if (!isset($regions)) {
    $regions = array_keys(dashboard_region_descriptions());
  }
  return $regions;
}