Error message

You are browsing documentation for drupal 7.x, which is not supported anymore. Read the updated version of this page for drupal 11.x (the latest version).

function dashboard_forms

Implements hook_forms().

File

modules/dashboard/dashboard.module, line 259

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.