You are here

function oa_sections_node_info in Open Atrium Core 7.2

Implements hook_node_info().

File

modules/oa_sections/oa_sections.features.inc, line 32
oa_sections.features.inc

Code

function oa_sections_node_info() {
  $items = array(
    'oa_section' => array(
      'name' => t('Section Page'),
      'base' => 'node_content',
      'description' => t('A landing page and collection of content within a Space.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  drupal_alter('node_info', $items);
  return $items;
}