| 6 system.module | system_hook_info() |
| 7 system.module | system_hook_info() |
| 8 system.module | system_hook_info() |
Implements hook_hook_info().
File
- modules/
system/ system.module, line 255 - Configuration system that lets administrators modify the workings of the site.
Code
function system_hook_info() {
$hooks['token_info'] = array(
'group' => 'tokens',
);
$hooks['token_info_alter'] = array(
'group' => 'tokens',
);
$hooks['tokens'] = array(
'group' => 'tokens',
);
$hooks['tokens_alter'] = array(
'group' => 'tokens',
);
return $hooks;
}
Login or register to post comments