Skip to content

Commit

Permalink
new module
Browse files Browse the repository at this point in the history
  • Loading branch information
guizmo committed Mar 30, 2012
1 parent 6e710da commit 6e39745
Show file tree
Hide file tree
Showing 20 changed files with 4,934 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@
<key>ESProjectWindowState</key>
<dict>
<key>ContentSize</key>
<string>{1106, 705}</string>
<string>{1680, 970}</string>
<key>ProjectURL</key>
<string>file://localhost/Users/guillaumebartolini/projects/drupal-starting-project/drupal-starting-project.esproj/</string>
<key>StateType</key>
<string>ProjectWindow</string>
<key>TopLeftPoint</key>
<string>{2847, 1018}</string>
<string>{2560, 1099}</string>
</dict>
<key>com.macrabbit.Espresso.FileManager.DisclosureCollapsed</key>
<false/>
<key>com.macrabbit.Espresso.FileManager.FileControllerState</key>
<dict>
<key>ExpandedURLs</key>
<array>
<string>file://localhost/Users/guillaumebartolini/projects/drupal-starting-project/drupal/sites/all/themes/rubik</string>
<string>file://localhost/Users/guillaumebartolini/projects/drupal-starting-project/drupal</string>
</array>
</dict>
<key>com.macrabbit.Espresso.Publisher.DisclosureCollapsed</key>
Expand Down
Binary file modified drupal/sites/all/.DS_Store
Binary file not shown.
40 changes: 40 additions & 0 deletions drupal/sites/all/modules/field_group/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/* $Id*/
CHANGELOG for field_group for Drupal 7

Field_group 7.x-1.x-dev
o Issue #1095316: Field Groups disappear when Content Type is renamed.
o Issue #1095316 by swentel: Support for Entity API.
o Issue #1095002 by animelion: Upgrading removes all existing field groups.
o Issue #1095130 by willvincent: Features export not working with rc2.

Field_group 7.x-1.0-rc2
o Ran through coder, minor.
o Issue #1033036 by Stalski, swentel: Create a field_group.api.php.
o Made the summary descriptions more human readable.
o Issue #1086450: Cannot see red star on some field groups even required fields are set to 1.
o #1072292 by shadow_jh, stalski: Using on user settings page but need to hid on registration page.
o #1092360 by dww: Move field_group_update_7000 functionality to hook_install().
o #1061228 Rewrite the field_group_field_group_is_empty function.
o Added ID's to fieldgroups.
o Removed unused field_group.admin.inc + menu item. Required asterix moving to field_group setting.
o #1045526 by stalski: Make formatter options more user-friendly and logical.
o #1041880 by robertgarrigos: duplicated entries in field_group table.
o #1043834 by amsri: Field Group module just does not work with profiles 2.

Field_group 7.x-1.0-rc1
o #1006464 Change #groups to #fieldgroups because of name collapsing with form_process_fieldset
o #1024184 fix collapsible when mode is set to open
o #1020278 by mori: Update fails.
o #1020116 by mikegfx: Confusing verbage across group types.
o #1018012 by mikegfx: Adding required asterisk to group tabs that have required fields.
o #960916 fixed reference warnings.
o No label anymore with div>open.
o #969258 Added check for fields and extra_fields.
o #960916 Fixed notice on for reference on group in field_group_settings.
o #961106 Fixed notice on entity type and bundle check.
o #962072 by mori: Improve CSS for horizontal tabs & accordion.
o Changed Fieldgroup API: defaults and instance_settings are now merged.
o Changed save action so everything is gathered during form_state to
postpone saving until the save button is hit.
o Changed some important variable name, so it makes more sense and easier to read.
o Add basic crud functions.
339 changes: 339 additions & 0 deletions drupal/sites/all/modules/field_group/LICENSE.txt

Large diffs are not rendered by default.

37 changes: 37 additions & 0 deletions drupal/sites/all/modules/field_group/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

History:
Field_group was written for Drupal 7. For drupal 6, the module is
located in the CCK module (http://drupal.org/project/cck).
As drupal core has a fields API drupal > 6, the field_group module
is considered a contribution.

Description:
field_group is a module that will group a set of fields. In Drupal7,
with fields, one means all fields that come from fieldable entities.
You can add fieldgroups in several types with their own format settings.
field_group has API functions to add your own formatter and rendering for
it.
One of the biggest improvements to previous versions, is that fieldgroups
have unlimited nesting, better display control.
Note that field_group will only group fields, it can not be used to hide
certain fields since this a permission matter.

Module project page:
http://drupal.org/project/field_group

Documentation page:
http://drupal.org/node/1017838
http://drupal.org/node/1017962

To submit bug reports and feature suggestions, or to track changes:
http://drupal.org/project/issues/field_group

-- MAINTAINERS --

stalski - http://drupal.org/user/322618
swentel - http://drupal.org/user/107403
zuuperman - http://drupal.org/user/361625

-- INSPIRATORS --

yched - http://drupal.org/user/39567
Loading

0 comments on commit 6e39745

Please sign in to comment.