You are here

function pmteam_node_info in Drupal PM (Project Management) 7

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.2 pmteam/pmteam.module \pmteam_node_info()

Implements hook_node_info().

File

pmteam/pmteam.module, line 90
Functionality for the Project Management Team module Organized into the following sections:

Code

function pmteam_node_info() {
  return array(
    'pmteam' => array(
      'name' => t('Team'),
      'base' => 'pmteam',
      'description' => t('A team for use within Project Management.'),
      'title_label' => t('Team Name'),
      'body_label' => t('Description'),
    ),
  );
}