/**
* Preprocessor for theme('comment_wrapper').
*/
function __preprocess_comment_wrapper(&$vars) {
$vars[ 'hook' ] = 'box' ;
$vars[ 'attr' ][ 'id' ] = 'comments' ;
$vars[ 'attr' ][ 'class' ] .= ' clear-block' ;
if ($vars[ 'content' ] && $vars[ 'node' ]->type != 'forum' && $vars[ 'node' ]->comment_count != 0) {
$vars[ 'content' ] = '<h2 class="box-title">' . t( 'Comments' ) . '</h2>' . $vars[ 'content' ];
}
}
* This source code was highlighted with Source Code Highlighter .
Source: https://habr.com/ru/post/95521/
All Articles