function pmnote_form in Drupal PM (Project Management) 7.3
Same name and namespace in other branches
- 8 pmnote/pmnote.module \pmnote_form()
- 7 pmnote/pmnote.module \pmnote_form()
- 7.2 pmnote/pmnote.module \pmnote_form()
Implements hook_form().
File
- pmnote/
pmnote.module, line 51 - Functions for the PM Note module.
Code
function pmnote_form(&$node, $form_state) {
$breadcrumb = array(
array(
'text' => t('Notes'),
'path' => 'pm/notes',
),
);
pm_set_breadcrumb($breadcrumb);
return node_content_form($node, $form_state);
}