function theme_admin_block_content

Returns HTML for the content of an administrative block.

Parameters

$variables: An associative array containing:

  • content: An array containing information about the block. Each element of the array represents an administrative menu item, and must at least contain the keys 'title', 'href', and 'localized_options', which are passed to l(). A 'description' key may also be provided.

Related topics

3 theme calls to theme_admin_block_content()
system_admin_config_page in drupal/core/modules/system/system.admin.inc
Menu callback; Provide the administration overview page.
system_admin_menu_block_page in drupal/core/modules/system/system.admin.inc
Provide a single block from the administration menu as a page.
theme_system_admin_index in drupal/core/modules/system/system.admin.inc
Returns HTML for the output of the admin index page.

File

drupal/core/modules/system/system.admin.inc, line 1324
Admin page callbacks for the system module.

Code

function theme_admin_block_content($variables) {
  $content = $variables['content'];
  $output = '';
  if (!empty($content)) {
    $class = 'admin-list';
    if ($compact = system_admin_compact_mode()) {
      $class .= ' compact';
    }
    $output .= '<dl class="' . $class . '">';
    foreach ($content as $item) {
      $output .= '<dt>' . l($item['title'], $item['href'], $item['localized_options']) . '</dt>';
      if (!$compact && isset($item['description'])) {
        $output .= '<dd>' . filter_xss_admin($item['description']) . '</dd>';
      }
    }
    $output .= '</dl>';
  }
  return $output;
}