function comment_skinr_data in Skinr 6
Implementation of hook_skinr_data().
Related topics
File
- modules/
comment.skinr.inc, line 16 - Provide skinr handling for comment.module
Code
function comment_skinr_data() {
$data['comment']['form']['node_type_form'] = array(
'index_handler' => 'comment_skinr_form_index_handler',
'preprocess_hook' => 'comment_wrapper',
'title' => t('comment settings'),
'weight' => 1,
);
$data['comment']['preprocess']['comment_wrapper'] = array(
'index_handler' => 'comment_skinr_preprocess_index_handler',
);
return $data;
}