theme_comment_controls

  1. drupal
    1. 4.7
    2. 5 comment.module
    3. 6 comment.module
Versions
4.7 – 6 theme_comment_controls($form)

Code

modules/comment.module, line 1528

<?php
function theme_comment_controls($form) {
  $output .= '<div class="container-inline">';
  $output .=  form_render($form);
  $output .= '</div>';
  $output .= '<div class="description">' . t('Select your preferred way to display the comments and click "Save settings" to activate your changes.') . '</div>';
  return theme('box', t('Comment viewing options'), $output);
}
?>