You are here

function variablecheck_permission in Variable Check 7

Implementation of hook_permission()

File

./variablecheck.module, line 10

Code

function variablecheck_permission() {
  return array(
    'check variables' => array(
      'title' => t('Check System Variables'),
      'description' => t('Check the validity of settings in the variable table.'),
      'restrict access' => TRUE,
    ),
  );
}