You are here

function ctools_term_list_content_type_admin_title in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 plugins/content_types/term_context/term_list.inc \ctools_term_list_content_type_admin_title()

File

plugins/content_types/term_context/term_list.inc, line 163

Code

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