| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * Implementation of hook_fieldgroup_default_groups(). 5 */ 6 function features_test_fieldgroup_default_groups() { 7 $groups = array(); 8 9 // Exported group: group_features_test 10 $groups['features_test-group_features_test'] = array( 11 'group_type' => 'standard', 12 'type_name' => 'features_test', 13 'group_name' => 'group_features_test', 14 'label' => 'Test fieldgroup', 15 'settings' => array( 16 'form' => array( 17 'style' => 'fieldset', 18 'description' => '', 19 ), 20 'display' => array( 21 'description' => '', 22 'label' => 'above', 23 '5' => array( 24 'format' => 'fieldset', 25 'exclude' => 0, 26 ), 27 'teaser' => array( 28 'format' => 'fieldset', 29 'exclude' => 0, 30 ), 31 'full' => array( 32 'format' => 'fieldset', 33 'exclude' => 0, 34 ), 35 '4' => array( 36 'format' => 'fieldset', 37 'exclude' => 0, 38 ), 39 '2' => array( 40 'format' => 'fieldset', 41 'exclude' => 0, 42 ), 43 '3' => array( 44 'format' => 'fieldset', 45 'exclude' => 0, 46 ), 47 'token' => array( 48 'format' => 'fieldset', 49 'exclude' => 0, 50 ), 51 ), 52 ), 53 'weight' => '35', 54 'fields' => array( 55 '0' => 'field_features_test_child_a', 56 '1' => 'field_features_test_child_b', 57 ), 58 ); 59 60 // Translatables 61 array( 62 t('Test fieldgroup'), 63 ); 64 65 return $groups; 66 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |