| 5 comment.module | _comment_per_page() |
| 6 comment.module | _comment_per_page() |
| 7 comment.module | _comment_per_page() |
| 8 comment.module | _comment_per_page() |
Return an array of "comments per page" settings from which the user can choose.
1 call to _comment_per_page()
File
- modules/
comment/ comment.module, line 2404 - 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));
}
Login or register to post comments