You are here

function pmticket_form in Drupal PM (Project Management) 7.2

Same name and namespace in other branches
  1. 8 pmticket/pmticket.module \pmticket_form()
  2. 7.3 pmticket/pmticket.module \pmticket_form()
  3. 7 pmticket/pmticket.module \pmticket_form()

Implements hook_form().

File

pmticket/pmticket.module, line 51
Main module file for the PM Ticket module.

Code

function pmticket_form(&$node, $form_state) {
  $breadcrumb = array(
    l(t('Project Management'), 'pm'),
    l(t('Tickets'), 'pm/tickets'),
  );
  drupal_set_breadcrumb($breadcrumb);
  return node_content_form($node, $form_state);
}