1 form_example.module form_example_config_info()

Implements hook_config_info().

Related topics

File

modules/examples/form_example/form_example.module, line 23
Hook implementations for the Form Example module.

Code

function form_example_config_info() {
  $prefixes['form_example.settings'] = array(
    'label' => t('Form Example settings'),
    'group' => t('Configuration'),
  );
  return $prefixes;
}