1 path.module | path_hook_info() |
Implements hook_hook_info().
File
- core/
modules/ path/ path.module, line 195 - Enables users to customize URLs and provide automatic URL alias patterns.
Code
function path_hook_info() {
$hooks = array(
'path_info',
'path_info_alter',
'path_pattern_alter',
'path_alias_alter',
'path_is_alias_reserved',
);
return array_fill_keys($hooks, array('group' => 'path'));
}