function pmticket_form in Drupal PM (Project Management) 7.2
Same name and namespace in other branches
- 8 pmticket/pmticket.module \pmticket_form()
- 7.3 pmticket/pmticket.module \pmticket_form()
- 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);
}