function pmteam_field_extra_fields in Drupal PM (Project Management) 7
Implements hook_content_extra_fields().
File
- pmteam/
pmteam.module, line 105 - Functionality for the Project Management Team module Organized into the following sections:
Code
function pmteam_field_extra_fields() {
$extra['node']['pmteam'] = array(
'form' => array(
'group1' => array(
'label' => 'Team members',
'weight' => -20,
),
),
);
return $extra;
}