You are here

function pmteam_node_info in Drupal PM (Project Management) 7.2

Same name and namespace in other branches
  1. 8 pmteam/pmteam.module \pmteam_node_info()
  2. 7.3 pmteam/pmteam.module \pmteam_node_info()
  3. 7 pmteam/pmteam.module \pmteam_node_info()

Implements hook_node_info().

File

pmteam/pmteam.module, line 10
Main module file for the PM Team module.

Code

function pmteam_node_info() {
  return array(
    'pmteam' => array(
      'name' => t('Team'),
      'base' => 'pmteam',
      'description' => t('Use <em>teams</em> for groups of users within <em>Project Management</em>.'),
      'title_label' => t('Team Name'),
      'body_label' => t('Description'),
    ),
  );
}