You are here

function panels_admin_title_term_list in Panels 6.2

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

File

content_types/term_list.inc, line 124

Code

function panels_admin_title_term_list($subtype, $conf, $context) {
  $options = panels_admin_term_list_options();
  return t('"@s" @type', array(
    '@s' => $context->identifier,
    '@type' => drupal_strtolower($options[$conf['type']]),
  ));
}