You are here

function variablecheck_menu in Variable Check 6

Same name and namespace in other branches
  1. 7 variablecheck.module \variablecheck_menu()

Implementation of hook_menu().

File

./variablecheck.module, line 12

Code

function variablecheck_menu() {
  $items['admin/reports/variablecheck'] = array(
    'title' => 'Check System Variables',
    'description' => 'Check the validity of settings in the variable table.',
    'page callback' => 'variablecheck_check_variables_page',
    'access arguments' => array(
      'check system variables',
    ),
  );
  return $items;
}