function views_content_views_exposed_content_type_admin_title in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 views_content/plugins/content_types/views_exposed.inc \views_content_views_exposed_content_type_admin_title()
Returns the administrative title for a type.
File
- views_content/
plugins/ content_types/ views_exposed.inc, line 50
Code
function views_content_views_exposed_content_type_admin_title($subtype, $conf, $context) {
return t('"@context" exposed widgets', array(
'@context' => $context->identifier,
));
}