function pmticket_form in Drupal PM (Project Management) 7.3
Same name and namespace in other branches
- 8 pmticket/pmticket.module \pmticket_form()
- 7 pmticket/pmticket.module \pmticket_form()
- 7.2 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(
array(
'text' => t('Tickets'),
'path' => 'pm/tickets',
),
);
pm_set_breadcrumb($breadcrumb);
return node_content_form($node, $form_state);
}