Full ELMS Learning Network documentation
function theme_dashboard_admin
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).cis7 dashboard.module | theme_dashboard_admin($variables) |
cle7 dashboard.module | theme_dashboard_admin($variables) |
elmsmedia7 dashboard.module | theme_dashboard_admin($variables) |
icor7 dashboard.module | theme_dashboard_admin($variables) |
meedjum_blog7 dashboard.module | theme_dashboard_admin($variables) |
mooc7 dashboard.module | 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
4 string references to the theme hook from theme_dashboard_admin()
Note: this list is generated by looking for the string for this theme hook, so it may include some references that are not actually using this theme hook.
- dashboard_is_visible in modules/
dashboard/ dashboard.module - Determines if the dashboard should be displayed on the current page.
- dashboard_menu in modules/
dashboard/ dashboard.module - Implements hook_menu().
- dashboard_theme in modules/
dashboard/ dashboard.module - Implements hook_theme().
- og-7.x-1.x.database.php in sites/
all/ modules/ ulmus/ og/ tests/ og-7.x-1.x.database.php - Filled installation of Drupal 7.0, for test purposes.
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>';
}