You are here

function blocktheme_menu in Block Theme 5

Same name and namespace in other branches
  1. 6 blocktheme.module \blocktheme_menu()
  2. 7 blocktheme.module \blocktheme_menu()

File

./blocktheme.module, line 3

Code

function blocktheme_menu($may_cache = false) {
  if (!$may_cache) {
    $items[] = array(
      'path' => 'admin/settings/blocktheme',
      'title' => t('Block Theme'),
      'description' => t('Allows the admin to define re-usable block templates that can be configured from block config screen'),
      'callback' => 'drupal_get_form',
      'callback arguments' => array(
        'blocktheme_admin_settings',
      ),
    );
  }
  return $items;
}