1 config_test.module | config_test_config_info() |
Implements hook_config_info().
File
- core/
modules/ config/ tests/ config_test/ config_test.module, line 10 - Provides sample configuration files for testing.
Code
function config_test_config_info() {
$prefixes['config_test.group'] = array(
'name_key' => 'name',
'label_key' => 'label',
'group' => t('Configuration test items'),
);
$prefixes['config_test.simple'] = array(
'name' => t('Configuration test simple'),
'group' => t('Configuration'),
);
$prefixes['config_test.dynamic.new'] = array(
'name' => t('Dynamic config file'),
'group' => t('Configuration'),
);
return $prefixes;
}