Hi,

After a fresh install of project module, I found that on the mange fields page of my project content type:

admin/structure/types/manage/project/fields

there is an empty field group: group_project_resources, as shown in attached picture.

However, when I check into the project.field_group.inc, I see some fields in this group, such as, field_project_homepage:

/**
 * Implements hook_field_group_info().
 */
function project_field_group_info() {
  $field_groups = array();

  $field_group = new stdClass();
  $field_group->disabled = FALSE; /* Edit this to true to make a default field_group disabled initially */
  $field_group->api_version = 1;
  $field_group->identifier = 'group_project_resources|node|project|form';
  $field_group->group_name = 'group_project_resources';
  $field_group->entity_type = 'node';
  $field_group->bundle = 'project';
  $field_group->mode = 'form';
  $field_group->parent_name = '';
  $field_group->data = array(
    'label' => 'Resources',
    'weight' => '6',
    'children' => array(
      0 => 'field_project_homepage',
      1 => 'field_project_changelog',
      2 => 'field_project_demo',
      3 => 'field_project_documentation',
      4 => 'field_project_screenshots',
      5 => 'field_project_license',
    ),
    'format_type' => 'tab',
    'format_settings' => array(
      'formatter' => 'closed',
      'instance_settings' => array(
        'description' => '',
        'classes' => '',
        'required_fields' => 1,
      ),
    ),
  );
  $field_groups['group_project_resources|node|project|form'] = $field_group;

  return $field_groups;
}

And I am wondering:
1) if there are any prerequisites to make sure the field group will be created as designed; or
2) if there are any human interventions that are needed to create all those fields.

Thanks in advance for any suggestions!

Regards,

foredoc

CommentFileSizeAuthor
Empty-Group-Project-Resources.png17.8 KBforedoc
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

foredoc created an issue.

BartGysens’s picture

+1: Same issue here