You are here

function content_panels_content_types in Content Construction Kit (CCK) 5

Implementation of hook_panels_content_types()

File

./content_panels.inc, line 15

Code

function content_panels_content_types() {
  $items = array();
  $items['content_field'] = array(
    'title' => t('Content field'),
    'single' => TRUE,
    'content_types' => 'content_panels_field_content_types',
    'add callback' => 'content_panels_edit_field',
    'edit callback' => 'content_panels_edit_field',
    'render callback' => 'content_panels_render_field',
    'title callback' => 'content_panels_title_content',
  );
  return $items;
}