1 node.module node_config_info()

Implements hook_config_info().

File

core/modules/node/node.module, line 3711
The core module that allows content to be submitted to the site.

Code

function node_config_info() {
  $prefixes['node.type'] = array(
    'name_key' => 'type',
    'label_key' => 'name',
    'group' => t('Content types'),
  );
  return $prefixes;
}