You are here

function glossify_menu in Glossify 5

Same name and namespace in other branches
  1. 6.3 glossify.module \glossify_menu()
  2. 6 glossify.module \glossify_menu()

File

./glossify.module, line 3

Code

function glossify_menu($may_cache) {
  $items = array();
  if ($may_cache) {
    $items[] = array(
      'path' => 'admin/settings/glossify',
      'title' => t('Glossify settings'),
      'callback' => 'drupal_get_form',
      'callback arguments' => array(
        'glossify_admin_settings',
      ),
      'description' => t('Manipulate glossify behavior'),
      'access' => user_access('administer site configuration'),
    );
  }
  return $items;
}