function openpublic_services_node_info in OpenPublic 7
Implements hook_node_info().
File
- modules/
apps/ openpublic_services/ openpublic_services.features.inc, line 29 - openpublic_services.features.inc
Code
function openpublic_services_node_info() {
$items = array(
'services' => array(
'name' => t('Services'),
'base' => 'node_content',
'description' => t('A description of a specific service that the organization or agency provides to site users (such as "tax preparation" or "grant programs").'),
'has_title' => '1',
'title_label' => t('Title'),
'help' => '',
),
);
drupal_alter('node_info', $items);
return $items;
}