You are here

function oa_teams_node_info in Open Atrium Core 7.2

Implements hook_node_info().

File

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

Code

function oa_teams_node_info() {
  $items = array(
    'oa_team' => array(
      'name' => t('Team'),
      'base' => 'node_content',
      'description' => t('An ad-hoc collection of users within a Space'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  drupal_alter('node_info', $items);
  return $items;
}