You are here

function content_multigroup_help in Content Construction Kit (CCK) 6.3

@file Create complex, repeating groups of CCK fields that work in unison.

File

modules/content_multigroup/content_multigroup.module, line 8
Create complex, repeating groups of CCK fields that work in unison.

Code

function content_multigroup_help($path, $arg) {
  switch ($path) {
    case 'admin/help#content_multigroup':
      return t('The fields in a Standard group are independent of each other and each can have either single or multiple values. The fields in a Multigroup are treated as a repeating collection of single value fields.');
  }
}