function views_content_views_row_content_type_admin_title in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 views_content/plugins/content_types/views_row.inc \views_content_views_row_content_type_admin_title()
File
- views_content/
plugins/ content_types/ views_row.inc, line 176
Code
function views_content_views_row_content_type_admin_title($subtype, $conf, $context) {
$rows = array_filter($conf['rows']);
return format_plural(count($rows), '"@context" row @rows', '"@context" rows @rows', array(
'@context' => $context->identifier,
'@rows' => implode(', ', $rows),
));
}