_comment_per_page

Definition

_comment_per_page()
comment/comment.module, line 1891

Description

Return an array of "comments per page" settings from which the user can choose.

Code

<?php
function _comment_per_page() {
  return drupal_map_assoc(array(10, 30, 50, 70, 90, 150, 200, 250, 300));
}
?>