function theme_dashboard_admin

theme_dashboard_admin($variables)

Returns HTML for the non-customizable part of the dashboard page.

Parameters

$variables: An associative array containing:

  • element: A render element containing a #message.

Related topics

File

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

Code

function theme_dashboard_admin($variables) {
  // We only return a simple help message, since the actual content of the page
  // will be populated via the dashboard regions in dashboard_page_build().
  return '<div class="customize-dashboard js-hide">' . $variables['element']['#message'] . '</div>';
}

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