summaryrefslogtreecommitdiff
path: root/features/calendario_feature/calendario_feature.field_group.inc
blob: 8da0b1361eb97f7f86d84944b4b73adcbbfebde8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
 * @file
 * calendario_feature.field_group.inc
 */

/**
 * Implements hook_field_group_info().
 */
function calendario_feature_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_categories|node|evento|form';
  $field_group->group_name = 'group_categories';
  $field_group->entity_type = 'node';
  $field_group->bundle = 'evento';
  $field_group->mode = 'form';
  $field_group->parent_name = '';
  $field_group->data = array(
    'label' => 'Categorias',
    'weight' => '6',
    'children' => array(
      0 => 'field_theme',
      1 => 'field_type',
    ),
    'format_type' => 'fieldset',
    'format_settings' => array(
      'label' => 'Categorias',
      'instance_settings' => array(
        'required_fields' => 1,
        'classes' => '',
        'description' => '',
      ),
      'formatter' => 'collapsed',
    ),
  );
  $export['group_categories|node|evento|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_contato|node|evento|form';
  $field_group->group_name = 'group_contato';
  $field_group->entity_type = 'node';
  $field_group->bundle = 'evento';
  $field_group->mode = 'form';
  $field_group->parent_name = '';
  $field_group->data = array(
    'label' => 'Informações de contato',
    'weight' => '5',
    'children' => array(
      0 => 'field_link',
      1 => 'field_address',
      2 => 'field_contact',
    ),
    'format_type' => 'fieldset',
    'format_settings' => array(
      'label' => 'Informações de contato',
      'instance_settings' => array(
        'required_fields' => 1,
        'classes' => '',
        'description' => '',
      ),
      'formatter' => 'collapsed',
    ),
  );
  $export['group_contato|node|evento|form'] = $field_group;

  return $export;
}