Full ELMS Learning Network documentation
function theme_admin_page
×
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 system.admin.inc | theme_admin_page($variables) |
cle7 system.admin.inc | theme_admin_page($variables) |
elmsmedia7 system.admin.inc | theme_admin_page($variables) |
icor7 system.admin.inc | theme_admin_page($variables) |
meedjum_blog7 system.admin.inc | theme_admin_page($variables) |
mooc7 system.admin.inc | theme_admin_page($variables) |
Returns HTML for an administrative page.
Parameters
$variables: An associative array containing:
- blocks: An array of blocks to display. Each array should include a 'title', a 'description', a formatted 'content' and a 'position' which will control which container it will be in. This is usually 'left' or 'right'.
Related topics
1 theme call to theme_admin_page()
- system_admin_config_page in modules/
system/ system.admin.inc - Menu callback; Provide the administration overview page.
2 string references to the theme hook from theme_admin_page()
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.
- system_admin_config_page in modules/
system/ system.admin.inc - Menu callback; Provide the administration overview page.
- system_theme in modules/
system/ system.module - Implements hook_theme().
File
- modules/
system/ system.admin.inc, line 2463 - Admin page callbacks for the system module.
Code
function theme_admin_page($variables) {
$blocks = $variables['blocks'];
$stripe = 0;
$container = array();
foreach ($blocks as $block) {
if ($block_output = theme('admin_block', array('block' => $block))) {
if (empty($block['position'])) {
// perform automatic striping.
$block['position'] = ++$stripe % 2 ? 'left' : 'right';
}
if (!isset($container[$block['position']])) {
$container[$block['position']] = '';
}
$container[$block['position']] .= $block_output;
}
}
$output = '<div class="admin clearfix">';
$output .= theme('system_compact_link');
foreach ($container as $id => $data) {
$output .= '<div class="' . $id . ' clearfix">';
$output .= $data;
$output .= '</div>';
}
$output .= '</div>';
return $output;
}