You are here

function pmnote_form in Drupal PM (Project Management) 8

Same name and namespace in other branches
  1. 7.3 pmnote/pmnote.module \pmnote_form()
  2. 7 pmnote/pmnote.module \pmnote_form()
  3. 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(
    l(t('Project Management'), 'pm'),
    l(t('Notes'), 'pm/notes'),
  );
  drupal_set_breadcrumb($breadcrumb);
  return node_content_form($node, $form_state);
}