You are here

function pmorganization_field_extra_fields in Drupal PM (Project Management) 7

Implements hook_field_extra_fields().

File

pmorganization/pmorganization.module, line 142

Code

function pmorganization_field_extra_fields() {
  $extra['node']['pmorganization'] = array(
    'form' => array(
      'group1' => array(
        'label' => 'Customer/Provider/Active Group',
        'weight' => -21,
      ),
      'group2' => array(
        'label' => 'Address Group',
        'weight' => -19,
      ),
      'group3' => array(
        'label' => 'Phone/WWW/Email Group',
        'weight' => -18,
      ),
      'group4' => array(
        'label' => 'Currency/Language/Tax ID Group',
        'weight' => -17,
      ),
    ),
  );
  return $extra;
}