You are here

function content_content_field_ctools_content_types in Content Construction Kit (CCK) 6.3

Same name and namespace in other branches
  1. 6.2 includes/panels/content_types/content_field.inc \content_content_field_ctools_content_types()

Callback function to supply a list of content types.

File

includes/panels/content_types/content_field.inc, line 11
This file provides a CTools content type for fields.

Code

function content_content_field_ctools_content_types() {
  return array(
    'title' => t('Content field'),
    'defaults' => array(
      'label' => '',
      'formatter' => '',
    ),
    'content type' => 'content_content_field_content_type_content_type',
  );
}