function pmnote_node_info in Drupal PM (Project Management) 7.2
Same name and namespace in other branches
- 8 pmnote/pmnote.module \pmnote_node_info()
- 7.3 pmnote/pmnote.module \pmnote_node_info()
- 7 pmnote/pmnote.module \pmnote_node_info()
Implements hook_node_info().
File
- pmnote/
pmnote.module, line 38 - Functions for the PM Note module.
Code
function pmnote_node_info() {
return array(
'pmnote' => array(
'name' => t('Note'),
'base' => 'pmnote',
'description' => t('Use <em>notes</em> for free text that can be attached to another element within <em>Project Management</em>.'),
),
);
}