You are here

function pmexpense_field_extra_fields in Drupal PM (Project Management) 7

Implements hook_field_extra_fields().

File

pmexpense/pmexpense.module, line 138
Hook implementations and main functions for PM Expense.

Code

function pmexpense_field_extra_fields() {
  $extra['node']['pmexpense'] = array(
    'form' => array(
      'group1' => array(
        'label' => 'Organization/Project/Task/Ticket Group',
        'weight' => -20,
      ),
      'group2' => array(
        'label' => 'Provider Group',
        'weight' => -18,
      ),
      'group3' => array(
        'label' => 'Amount',
        'weight' => -17,
      ),
      'group4' => array(
        'label' => 'Tax Group',
        'weight' => -16,
      ),
    ),
  );
  return $extra;
}