1.20.x node.module node_config_info()

Implements hook_config_info().

File

modules/node/node.module, line 3713
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('Node types'),
  );
  return $prefixes;
}