function token_tweaks_menu in Token tweaks 7
Implements hook_menu().
File
- ./
token_tweaks.module, line 6
Code
function token_tweaks_menu() {
$items['admin/config/system/tokens'] = array(
'title' => 'Tokens',
'description' => 'Configure behavior of tokens on the site.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'token_tweaks_settings_form',
),
'access arguments' => array(
'administer site configuration',
),
'file' => 'token_tweaks.admin.inc',
);
return $items;
}