'showregions', 'title' => t('show regions'), 'callback' => 'showregions_show', 'access' => user_access('administer blocks'), 'type' => MENU_SUGGESTED_ITEM); } return $items; } function showregions_show() { global $theme; showregions_set_css(); foreach (system_region_list() as $key => $value) { drupal_set_content($key, '
' . t('%region region', array('%region' => $key)) . '
'); } print theme('page', t('This page shows available regions for the %theme theme.', array('%theme' => $theme))); } function showregions_set_css() { drupal_set_html_head(' '); } ?>