You are here

function fieldgroup_content_fieldgroup_ctools_content_types in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 modules/fieldgroup/panels/content_types/content_fieldgroup.inc \fieldgroup_content_fieldgroup_ctools_content_types()

Callback function to supply a list of content types.

File

modules/fieldgroup/panels/content_types/content_fieldgroup.inc, line 11
This file provides a CTools content type for fieldgroups.

Code

function fieldgroup_content_fieldgroup_ctools_content_types() {
  return array(
    'title' => t('Content fieldgroup'),
    'defaults' => array(
      'label' => 'hidden',
      'format' => 'simple',
      'empty' => '',
    ),
  );
}