You are here

function panels_custom_panels_content_types in Panels 5

Same name and namespace in other branches
  1. 5.2 content_types/custom.inc \panels_custom_panels_content_types()
  2. 6.2 content_types/custom.inc \panels_custom_panels_content_types()

Callback function to supply a list of content types.

File

content_types/custom.inc, line 5

Code

function panels_custom_panels_content_types() {
  $items['custom'] = array(
    'callback' => 'panels_content_custom',
    'admin' => 'panels_admin_custom',
  );
  return $items;
}