comment.skinr.inc in Skinr 6
Same filename and directory in other branches
Provide skinr handling for comment.module
File
modules/comment.skinr.incView source
<?php
/**
* @file
* Provide skinr handling for comment.module
*/
/**
* @defgroup skinr_comment_module comment.module handlers
*
* @{
*/
/**
* Implementation of hook_skinr_data().
*/
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;
}
/**
* Skinr form index handler.
*
* @param $op
* What kind of action is being performed. Possible values:
* - "form": the form elements for Skinr are being inserted in a form
* - "submit": the form has been submitted.
* @param &$form
* - For "form", passes in the $form parameter from hook_form_alter().
* - For "submit", passes in the $form parameter from hook_form_submit().
* @param $form_state
* - For "form", passes in the $form_state parameter from hook_form_alter().
* - For "submit", passes in the $form_state parameter from hook_form_submit().
* @return
* The index where we can find our values in Skinrs data structure.
*/
function comment_skinr_form_index_handler($op, &$form, &$form_state) {
switch ($op) {
case 'form':
return $form['#node_type']->type;
case 'submit':
// Clear old variable before we set a new one if the node type has changed
if ($form_state['values']['old_type'] != $form_state['values']['type']) {
foreach ($form_state['values']['skinr_settings']['comment_group'] as $theme_name => $theme_data) {
skinr_set($theme_name, 'comment', $form_state['values']['old_type'], '');
}
}
return $form_state['values']['type'];
}
}
/**
* Skinr preprocess index handler.
*
* @param &$vars
* Passes in the $vars parameter from module_preprocess().
* @return
* The index where we can find our values in Skinrs data structure. If an
* array is returned, it will loop through each index in Skinr's data
* structure and merge the returned classes.
*/
function comment_skinr_preprocess_index_handler(&$vars) {
return $vars['node']->type;
}
/**
* @}
*/
Functions
Name | Description |
---|---|
comment_skinr_data | Implementation of hook_skinr_data(). |
comment_skinr_form_index_handler | Skinr form index handler. |
comment_skinr_preprocess_index_handler | Skinr preprocess index handler. |