On this page
function dashboard_forms
dashboard_forms()
Implements hook_forms().
File
- modules/dashboard/dashboard.module, line 259
- Provides a dashboard page in the administrative interface.
Code
function dashboard_forms() {
// Reroute the dashboard configuration form to the main blocks administration
// form. This allows us to distinguish them by form ID in hook_form_alter().
$forms['dashboard_admin_display_form'] = array(
'callback' => 'block_admin_display_form',
);
return $forms;
}
© 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_forms/7.x