function theme_dashboard

Returns HTML for the entire dashboard.

Parameters

$variables: An associative array containing:

  • element: A render element containing the properties of the dashboard region element, #dashboard_region and #children.

Related topics

File

modules/dashboard/dashboard.module, line 594

Code

function theme_dashboard($variables) {
    extract($variables);
    drupal_add_css(drupal_get_path('module', 'dashboard') . '/dashboard.css');
    return '<div id="dashboard" class="clearfix">' . $element['#children'] . '</div>';
}

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