function variablecheck_menu in Variable Check 7
Same name and namespace in other branches
- 6 variablecheck.module \variablecheck_menu()
Implementation of hook_menu().
File
- ./
variablecheck.module, line 23
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' => 'drupal_get_form',
'page arguments' => array(
'variablecheck_check_variables_form',
),
'access arguments' => array(
'check variables',
),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}