You are here

function panels_admin_title_term_description in Panels 6.2

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

File

content_types/term_description.inc, line 63

Code

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