You are here

function panels_admin_title_vocabulary_terms in Panels 6.2

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

File

content_types/vocabulary_terms.inc, line 82

Code

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