You are here

function oa_core_node_info in Open Atrium Core 7.2

Implements hook_node_info().

File

./oa_core.features.inc, line 71
oa_core.features.inc

Code

function oa_core_node_info() {
  $items = array(
    'oa_group' => array(
      'name' => t('Group'),
      'base' => 'node_content',
      'description' => t('A collection of users that exists across all spaces.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
    'oa_space' => array(
      'name' => t('Space'),
      'base' => 'node_content',
      'description' => t('A collection of content and users (members)'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  drupal_alter('node_info', $items);
  return $items;
}