13 uses of COMMENT_PUBLISHED in Drupal 5
- comment_access in modules/
comment/ comment.module - This is *not* a hook_access() implementation. This function is called to determine whether the current user has access to a particular comment.
- comment_admin_overview in modules/
comment/ comment.module - comment_form_add_preview in modules/
comment/ comment.module - comment_get_recent in modules/
comment/ comment.module - Find a number of recent comments. This is done in two steps. 1. Find the n (specified by $number) nodes that have the most recent comments. This is done by querying node_comment_statistics which has an index on last_comment_timestamp, and is thus a…
- comment_nodeapi in modules/
comment/ comment.module - Implementation of hook_nodeapi().
- comment_num_new in modules/
comment/ comment.module - get number of new comments for current user and specified node
- comment_num_replies in modules/
comment/ comment.module - comment_operations in modules/
comment/ comment.module - Comment operations. We offer different update operations depending on which comment administration page we're on.
- comment_render in modules/
comment/ comment.module - Renders comment(s).
- comment_reply in modules/
comment/ comment.module - This function is responsible for generating a comment reply form. There are several cases that have to be handled, including:
- comment_save in modules/
comment/ comment.module - Accepts a submission of new or changed comment content.
- tracker_page in modules/
tracker/ tracker.module - Menu callback. Prints a listing of active nodes on the site.
- _comment_update_node_statistics in modules/
comment/ comment.module - Updates the comment statistics for a given node. This should be called any time a comment is added, deleted, or updated.