function pmticket_field_extra_fields in Drupal PM (Project Management) 7
Implements hook_field_extra_fields().
File
- pmticket/
pmticket.module, line 134 - 1: Hooks 2: Access functions
Code
function pmticket_field_extra_fields() {
$extra['node']['pmticket'] = array(
'form' => array(
'group1' => array(
'label' => 'Organization/Project/Task Group',
'weight' => -20,
),
'group2' => array(
'label' => 'Category/Status/Priority Group',
'weight' => -19,
),
'group3' => array(
'label' => 'Duration Group',
'weight' => -16,
),
'group4' => array(
'label' => 'Price Group',
'weight' => -15,
),
'group5' => array(
'label' => 'Assigned to',
'weight' => -14,
),
),
);
return $extra;
}