You are here

function pmproject_field_extra_fields in Drupal PM (Project Management) 7

Implements hook_field_extra_fields().

File

pmproject/pmproject.module, line 162

Code

function pmproject_field_extra_fields() {
  $extra['node']['pmproject'] = array(
    'form' => array(
      'group1' => array(
        'label' => 'Organization',
        'weight' => -20,
      ),
      'group2' => array(
        'label' => 'Category/Status/Priority Group',
        'weight' => -19,
      ),
      'group3' => array(
        'label' => 'Duration Group',
        'weight' => -17,
      ),
      'group4' => array(
        'label' => 'Price Group',
        'weight' => -16,
      ),
      'group5' => array(
        'label' => 'Manager / Assigned to Group',
        'weight' => -15,
      ),
    ),
  );
  return $extra;
}