You are here

function panels_admin_title_node_type_desc in Panels 5.2

Same name and namespace in other branches
  1. 6.2 content_types/node_type_desc.inc \panels_admin_title_node_type_desc()
1 string reference to 'panels_admin_title_node_type_desc'
panels_node_type_desc_panels_content_types in content_types/node_type_desc.inc
Callback function to supply a list of content types.

File

content_types/node_type_desc.inc, line 61

Code

function panels_admin_title_node_type_desc($conf, $context) {
  return t('"@s" type description', array(
    '@s' => $context->identifier,
  ));
}