1 node_hooks_example.module node_hooks_example_config_info()

Implements hook_config_info().

Related topics

File

modules/examples/node_hooks_example/node_hooks_example.module, line 273
Hook implementations for the Node Hooks Example module.

Code

function node_hooks_example_config_info() {
  $prefixes['node_hooks_example.settings'] = array(
    'label' => t('Node Hooks Example settings'),
    'group' => t('Configuration'),
  );
  return $prefixes;
}