function 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']]),
    ));
}