You are here

function pmnote_field_extra_fields in Drupal PM (Project Management) 7

Implements hook_field_extra_fields().

File

pmnote/pmnote.module, line 120
Functions for the PM Note module.

Code

function pmnote_field_extra_fields() {
  $extra['node']['pmnote'] = array(
    'form' => array(
      'group1' => array(
        'label' => 'Organization/Project/Task Group',
        'weight' => -20,
      ),
    ),
  );
  return $extra;
}