You are here

function _comment_per_page in Drupal 6

Same name and namespace in other branches
  1. 4 modules/comment.module \_comment_per_page()
  2. 5 modules/comment/comment.module \_comment_per_page()
  3. 7 modules/comment/comment.module \_comment_per_page()

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

2 calls to _comment_per_page()
comment_controls in modules/comment/comment.module
Build a comment control form.
comment_form_alter in modules/comment/comment.module
Implementation of hook_form_alter().

File

modules/comment/comment.module, line 1878
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,
  ));
}