You are here

function fieldgroup_panels_fieldgroup_content_types in Content Construction Kit (CCK) 5

Return all fieldgroup panel types available.

1 string reference to 'fieldgroup_panels_fieldgroup_content_types'
fieldgroup_panels_content_types in ./fieldgroup.module
Implementation of hook_panels_content_types()

File

./fieldgroup.module, line 607
Create field groups for CCK fields.

Code

function fieldgroup_panels_fieldgroup_content_types() {
  return array(
    'description' => array(
      'title' => t('Content fieldgroup'),
      'icon' => 'icon_node.png',
      'path' => panels_get_path('content_types/node'),
      'description' => t('All fields from a fieldgroup on the referenced node.'),
      'required context' => new panels_required_context(t('Node'), 'node'),
      'category' => array(
        t('Node context'),
        -9,
      ),
    ),
  );
}