comment.skinr.inc in Skinr 8.2
Same filename and directory in other branches
Implements Skinr hooks for comment.module.
File
modules/comment.skinr.incView source
<?php
/**
* @file
* Implements Skinr hooks for comment.module.
*/
/**
* Implements hook_skinr_config_info().
*/
function comment_skinr_config_info() {
return array(
'comment' => t('Comment'),
);
}
/**
* Implements hook_skinr_ui_element_options().
*/
function comment_skinr_ui_element_options($theme_name = NULL) {
$options = array(
'comment' => array(),
);
return $options;
$types = node_type_get_types();
foreach ($types as $type) {
$options['comment'][$type->type] = $type->name;
}
asort($options['comment']);
return $options;
}
/**
* Implements hook_skinr_ui_element_title().
*/
function comment_skinr_ui_element_title($module, $element, $theme_name) {
if ($module == 'comment') {
$type = node_type_get_type($element);
return $type->name;
}
}
/**
* Implements hook_skinr_theme_hooks().
*/
function comment_skinr_theme_hooks($module, $element) {
$theme_hooks = array();
if ($module == 'comment') {
$theme_hooks = array(
'comment_wrapper__' . $element,
'comment_wrapper',
);
}
return $theme_hooks;
}
/**
* Implements hook_skinr_elements().
*/
function comment_skinr_elements($variables, $hook) {
$elements = array();
if ($hook == 'comment_wrapper') {
//dpm($variables['entity']->type);
//dpm($variables['entity']->bundle());
$elements['comment'] = array(
$variables['node']->type,
);
}
return $elements;
}
Functions
Name | Description |
---|---|
comment_skinr_config_info | Implements hook_skinr_config_info(). |
comment_skinr_elements | Implements hook_skinr_elements(). |
comment_skinr_theme_hooks | Implements hook_skinr_theme_hooks(). |
comment_skinr_ui_element_options | Implements hook_skinr_ui_element_options(). |
comment_skinr_ui_element_title | Implements hook_skinr_ui_element_title(). |