You are here

function panels_admin_title_node_attachments in Panels 6.2

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

File

content_types/node_attachments.inc, line 55

Code

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