1 path.module path_config_info()

Implements hook_config_info().

File

core/modules/path/path.module, line 584
Enables users to customize URLs and provide automatic URL alias patterns.

Code

function path_config_info() {
  $prefixes['path.settings'] = array(
    'label' => t('Path settings'),
    'group' => t('Configuration'),
  );
  return $prefixes;
}