You are here

function pmnote_node_info in Drupal PM (Project Management) 7.3

Same name and namespace in other branches
  1. 8 pmnote/pmnote.module \pmnote_node_info()
  2. 7 pmnote/pmnote.module \pmnote_node_info()
  3. 7.2 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>.'),
    ),
  );
}