function pmteam_node_info in Drupal PM (Project Management) 8
Same name and namespace in other branches
- 7.3 pmteam/pmteam.module \pmteam_node_info()
- 7 pmteam/pmteam.module \pmteam_node_info()
- 7.2 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'),
),
);
}