You are here

function panels_admin_title_node_content in Panels 6.2

Same name and namespace in other branches
  1. 5.2 content_types/node_content.inc \panels_admin_title_node_content()
1 string reference to 'panels_admin_title_node_content'
panels_node_content_panels_content_types in content_types/node_content.inc
Callback function to supply a list of content types.

File

content_types/node_content.inc, line 210

Code

function panels_admin_title_node_content($subtype, $conf, $context) {
  return t('"@s" content', array(
    '@s' => $context->identifier,
  ));
}