function comment_skinr_ui_element_title in Skinr 7.2
Same name and namespace in other branches
- 8.2 modules/comment.skinr.inc \comment_skinr_ui_element_title()
Implements hook_skinr_ui_element_title().
File
- modules/
comment.skinr.inc, line 32 - Implements Skinr hooks for comment.module.
Code
function comment_skinr_ui_element_title($module, $element, $theme_name) {
if ($module == 'comment') {
$type = node_type_get_type($element);
return $type->name;
}
}