theme_comment_order_form

Versions
4.6
theme_comment_order_form($order)

Code

modules/comment.module, line 1474

<?php
function theme_comment_order_form($order) {

  $orders = _comment_get_orders();
  foreach ($orders as $key=>$value) {
    $options .= " <option value=\"$key\"". ($order == $key ? ' selected="selected"' : '') .">$value</option>\n";
  }

  return "<select name=\"order\">$options</select>\n";
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.