Changeset 26867
- Timestamp:
- 12/24/2013 04:42:54 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r26492 r26867 747 747 * @since 2.0.0 748 748 * @uses $wpdb 749 * @uses apply_filters() Calls 'pre_comment_approved' hook on the type of comment750 * @uses apply_filters() Calls 'comment_duplicate_trigger' hook on commentdata.751 * @uses do_action() Calls 'check_comment_flood' hook on $comment_author_IP, $comment_author_email, and $comment_date_gmt752 749 * 753 750 * @param array $commentdata Contains information on the comment … … 830 827 * @since 2.3.0 831 828 * @uses $wpdb 832 * @uses apply_filters() Calls 'comment_flood_filter' filter with first833 * parameter false, last comment timestamp, new comment timestamp.834 * @uses do_action() Calls 'comment_flood_trigger' action with parameters with835 * last comment timestamp and new comment timestamp.836 829 * 837 830 * @param string $ip Comment IP. … … 903 896 * 904 897 * @since 2.7.0 905 * @uses get_query_var() Used to fill in the default for $per_page parameter. 906 * @uses get_option() Used to fill in defaults for parameters. 898 * 907 899 * @uses Walker_Comment 908 900 * … … 1011 1003 * 1012 1004 * @since 1.5.0 1013 * @uses do_action() Calls 'wp_blacklist_check' hook for all parameters.1014 1005 * 1015 1006 * @param string $author The author of the comment … … 1142 1133 * @since 2.0.0 1143 1134 * @uses $wpdb 1144 * @uses do_action() Calls 'delete_comment' hook on comment ID1145 * @uses do_action() Calls 'deleted_comment' hook on comment ID after deletion, on success1146 * @uses do_action() Calls 'wp_set_comment_status' hook on comment ID with 'delete' set for the second parameter1147 1135 * @uses wp_transition_comment_status() Passes new and old comment status along with $comment object 1148 1136 * … … 1217 1205 * 1218 1206 * @since 2.9.0 1219 * @uses do_action() on 'trash_comment' before trashing 1220 * @uses do_action() on 'trashed_comment' after trashing 1207 * 1221 1208 * @uses wp_delete_comment() if trash is disabled 1222 1209 * … … 1262 1249 * 1263 1250 * @since 2.9.0 1264 * @uses do_action() on 'untrash_comment' before untrashing1265 * @uses do_action() on 'untrashed_comment' after untrashing1266 1251 * 1267 1252 * @param int $comment_id Comment ID. … … 1306 1291 * 1307 1292 * @since 2.9.0 1308 * @uses do_action() on 'spam_comment' before spamming1309 * @uses do_action() on 'spammed_comment' after spamming1310 1293 * 1311 1294 * @param int $comment_id Comment ID. … … 1345 1328 * 1346 1329 * @since 2.9.0 1347 * @uses do_action() on 'unspam_comment' before unspamming1348 * @uses do_action() on 'unspammed_comment' after unspamming1349 1330 * 1350 1331 * @param int $comment_id Comment ID. … … 1955 1936 * @since 2.5.0 1956 1937 * @uses $wpdb 1957 * @uses do_action() Calls 'wp_update_comment_count' hook on $post_id, $new, and $old1958 * @uses do_action() Calls 'edit_posts' hook on $post_id and $post1959 1938 * 1960 1939 * @param int $post_id Post ID
Note: See TracChangeset
for help on using the changeset viewer.