You are here

function content_panels_field_content_types in Content Construction Kit (CCK) 5

1 string reference to 'content_panels_field_content_types'
content_panels_content_types in ./content_panels.inc
Implementation of hook_panels_content_types()

File

./content_panels.inc, line 29

Code

function content_panels_field_content_types() {
  return array(
    'description' => array(
      'title' => t('Content field'),
      'icon' => 'icon_node.png',
      'path' => panels_get_path('content_types/node'),
      'description' => t('A content field from the referenced node.'),
      'required context' => new panels_required_context(t('Node'), 'node'),
      'category' => array(
        t('Node context'),
        -9,
      ),
    ),
  );
}