You are here

function panels_admin_content_types_node_meta in Panels 5.2

Return all content types available.

1 string reference to 'panels_admin_content_types_node_meta'
panels_node_meta_panels_content_types in content_types/node_meta.inc
Callback function to supply a list of content types.

File

content_types/node_meta.inc, line 22

Code

function panels_admin_content_types_node_meta() {
  return array(
    'content' => array(
      'title' => t('Node meta data'),
      'icon' => 'icon_node.png',
      'path' => panels_get_path('content_types/node'),
      'description' => t('Meta data of the referenced node.'),
      'required context' => new panels_required_context(t('Node'), 'node'),
      'category' => array(
        t('Node context'),
        -9,
      ),
    ),
  );
}