You are here

function total_control_permission in Total Control Admin Dashboard 7.2

Implements hook_perm().

Adds permissions for access to the total control dashboard

File

./total_control.module, line 24

Code

function total_control_permission() {
  return array(
    'have total control' => array(
      'title' => t('Have total control'),
      'description' => t('See the Total Control administrative dashboard.'),
    ),
    'administer total control' => array(
      'title' => t('Administer total control'),
      'description' => t('Adjust the settings for the Total Control administrative dashboard.'),
    ),
  );
}