12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- /**
- * @file
- * popsu_publications.field_group.inc
- */
- /**
- * Implements hook_field_group_info().
- */
- function popsu_publications_field_group_info() {
- $export = 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_popsu_publication_basic|node|popsu_publication|form';
- $field_group->group_name = 'group_popsu_publication_basic';
- $field_group->entity_type = 'node';
- $field_group->bundle = 'popsu_publication';
- $field_group->mode = 'form';
- $field_group->parent_name = '';
- $field_group->data = array(
- 'label' => 'Informations essentielles',
- 'weight' => '2',
- 'children' => array(
- 0 => 'field_popsu_publication_soustitr',
- 1 => 'field_popsu_publication_theme',
- 2 => 'title',
- ),
- 'format_type' => 'tab',
- 'format_settings' => array(
- 'formatter' => 'closed',
- 'instance_settings' => array(
- 'description' => '',
- 'classes' => '',
- 'required_fields' => 1,
- ),
- ),
- );
- $export['group_popsu_publication_basic|node|popsu_publication|form'] = $field_group;
- $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_popsu_publication_cover|node|popsu_publication|form';
- $field_group->group_name = 'group_popsu_publication_cover';
- $field_group->entity_type = 'node';
- $field_group->bundle = 'popsu_publication';
- $field_group->mode = 'form';
- $field_group->parent_name = '';
- $field_group->data = array(
- 'label' => 'Image de couverture',
- 'weight' => '3',
- 'children' => array(
- 0 => 'field_popsu_publication_cover',
- ),
- 'format_type' => 'tab',
- 'format_settings' => array(
- 'formatter' => 'closed',
- 'instance_settings' => array(
- 'description' => '',
- 'classes' => '',
- 'required_fields' => 1,
- ),
- ),
- );
- $export['group_popsu_publication_cover|node|popsu_publication|form'] = $field_group;
- $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_popsu_publication_text|node|popsu_publication|form';
- $field_group->group_name = 'group_popsu_publication_text';
- $field_group->entity_type = 'node';
- $field_group->bundle = 'popsu_publication';
- $field_group->mode = 'form';
- $field_group->parent_name = '';
- $field_group->data = array(
- 'label' => 'Résumé',
- 'weight' => '4',
- 'children' => array(
- 0 => 'field_popsu_publication_body',
- ),
- 'format_type' => 'tab',
- 'format_settings' => array(
- 'formatter' => 'closed',
- 'instance_settings' => array(
- 'description' => '',
- 'classes' => '',
- 'required_fields' => 1,
- ),
- ),
- );
- $export['group_popsu_publication_text|node|popsu_publication|form'] = $field_group;
- return $export;
- }
|