function _comment_per_page

Returns an array of "comments per page" values that users can select from.

1 call to _comment_per_page()
comment_form_node_type_form_alter in drupal/core/modules/comment/comment.module
Implements hook_form_FORM_ID_alter().

File

drupal/core/modules/comment/comment.module, line 1811
Enables users to comment on published content.

Code

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