You are here

function comment_skinr_ui_element_title in Skinr 8.2

Same name and namespace in other branches
  1. 7.2 modules/comment.skinr.inc \comment_skinr_ui_element_title()

Implements hook_skinr_ui_element_title().

File

modules/comment.skinr.inc, line 33
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;
  }
}