You are here

function panels_admin_title_node_comments in Panels 6.2

Same name and namespace in other branches
  1. 5.2 content_types/node_comments.inc \panels_admin_title_node_comments()
1 string reference to 'panels_admin_title_node_comments'
panels_node_comments_panels_content_types in content_types/node_comments.inc
Plugin declaration function - returns a plugin definition array that describes the content type.

File

content_types/node_comments.inc, line 93

Code

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