You are here

function admin_permission in Admin 7.2

Implements hook_permission().

File

./admin.module, line 191

Code

function admin_permission() {
  return array(
    'use admin toolbar' => array(
      'title' => t('use admin toolbar'),
      'description' => t('Use the admin toolbar'),
    ),
    'select different theme' => array(
      'title' => t('select different theme'),
      'description' => t("Select different theme for the current user's session."),
    ),
  );
}