Changeset 5951 for trunk/src/includes/replies/functions.php
- Timestamp:
- 10/28/2015 04:07:50 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/replies/functions.php
r5924 r5951 17 17 * for the reply to function properly. 18 18 * 19 * @since bbPress (r3349)19 * @since 2.0.0 bbPress (r3349) 20 20 * 21 21 * @uses bbp_parse_args() … … 75 75 * Handles the front end reply submission 76 76 * 77 * @since bbPress (r2574)77 * @since 2.0.0 bbPress (r2574) 78 78 * 79 79 * @param string $action The requested action to compare this function to … … 885 885 * Walk up the ancestor tree from the current reply, and update all the counts 886 886 * 887 * @since bbPress (r2884)887 * @since 2.0.0 bbPress (r2884) 888 888 * 889 889 * @param int $reply_id Optional. Reply id … … 1015 1015 * Update the reply with its forum id it is in 1016 1016 * 1017 * @since bbPress (r2855)1017 * @since 2.0.0 bbPress (r2855) 1018 1018 * 1019 1019 * @param int $reply_id Optional. Reply id to update … … 1064 1064 * Update the reply with its topic id it is in 1065 1065 * 1066 * @since bbPress (r2855)1066 * @since 2.0.0 bbPress (r2855) 1067 1067 * 1068 1068 * @param int $reply_id Optional. Reply id to update … … 1113 1113 * Update the reply's meta data with its reply to id 1114 1114 * 1115 * @since bbPress (r4944)1115 * @since 2.4.0 bbPress (r4944) 1116 1116 * 1117 1117 * @param int $reply_id Reply id to update … … 1151 1151 * replies are active or to what depth. 1152 1152 * 1153 * @since bbPress (r5390)1153 * @since 2.6.0 bbPress (r5390) 1154 1154 * 1155 1155 * @param int $reply_id … … 1197 1197 * Update the revision log of the reply 1198 1198 * 1199 * @since bbPress (r2782)1199 * @since 2.0.0 bbPress (r2782) 1200 1200 * 1201 1201 * @param array $args Supports these args: … … 1241 1241 * Handles the front end move reply submission 1242 1242 * 1243 * @since bbPress (r4521)1243 * @since 2.3.0 bbPress (r4521) 1244 1244 * 1245 1245 * @param string $action The requested action to compare this function to … … 1497 1497 * and their forums. 1498 1498 * 1499 * @since bbPress (r4521)1499 * @since 2.3.0 bbPress (r4521) 1500 1500 * 1501 1501 * @param int $move_reply_id Move reply id … … 1540 1540 * replies 1541 1541 * 1542 * @since bbPress (r2740)1542 * @since 2.0.0 bbPress (r2740) 1543 1543 * 1544 1544 * @param string $action The requested action to compare this function to … … 1694 1694 * Return an associative array of available reply statuses 1695 1695 * 1696 * @since bbPress (r5399)1696 * @since 2.6.0 bbPress (r5399) 1697 1697 * 1698 1698 * @return array … … 1712 1712 * Marks a reply as spam 1713 1713 * 1714 * @since bbPress (r2740)1714 * @since 2.0.0 bbPress (r2740) 1715 1715 * 1716 1716 * @param int $reply_id Reply id … … 1760 1760 * Unspams a reply 1761 1761 * 1762 * @since bbPress (r2740)1762 * @since 2.0.0 bbPress (r2740) 1763 1763 * 1764 1764 * @param int $reply_id Reply id … … 1814 1814 * Approves a reply 1815 1815 * 1816 * @since bbPress (r5506)1816 * @since 2.6.0 bbPress (r5506) 1817 1817 * 1818 1818 * @param int $reply_id Reply id … … 1861 1861 * Unapproves a reply 1862 1862 * 1863 * @since bbPress (r5506)1863 * @since 2.6.0 bbPress (r5506) 1864 1864 * 1865 1865 * @param int $reply_id Reply id … … 2015 2015 * Return the replies per page setting 2016 2016 * 2017 * @since bbPress (r3540)2017 * @since 2.0.0 bbPress (r3540) 2018 2018 * 2019 2019 * @param int $default Default replies per page (15) … … 2039 2039 * Return the replies per RSS page setting 2040 2040 * 2041 * @since bbPress (r3540)2041 * @since 2.0.0 bbPress (r3540) 2042 2042 * 2043 2043 * @param int $default Default replies per page (25) … … 2065 2065 * Check if autoembeds are enabled and hook them in if so 2066 2066 * 2067 * @since bbPress (r3752) 2067 * @since 2.1.0 bbPress (r3752) 2068 * 2068 2069 * @global WP_Embed $wp_embed 2069 2070 */ … … 2084 2085 * to include both the topic AND its children in the same loop. 2085 2086 * 2086 * @since bbPress (r4058)2087 * @since 2.1.0 bbPress (r4058) 2087 2088 * 2088 2089 * @param string $where … … 2149 2150 * Output an RSS2 feed of replies, based on the query passed. 2150 2151 * 2151 * @since bbPress (r3171)2152 * @since 2.0.0 bbPress (r3171) 2152 2153 * 2153 2154 * @uses bbp_version() … … 2288 2289 * Redirect if unathorized user is attempting to edit a reply 2289 2290 * 2290 * @since bbPress (r3605)2291 * @since 2.1.0 bbPress (r3605) 2291 2292 * 2292 2293 * @uses bbp_is_reply_edit() … … 2319 2320 * leverage core WordPress query ordering much more effectively. 2320 2321 * 2321 * @since bbPress (r3933)2322 * @since 2.1.0 bbPress (r3933) 2322 2323 * 2323 2324 * @param int $reply_id … … 2364 2365 * of a given topic. 2365 2366 * 2366 * @since bbPress (r3933)2367 * @since 2.1.0 bbPress (r3933) 2367 2368 * 2368 2369 * @param int $reply_id … … 2405 2406 * List replies 2406 2407 * 2407 * @since bbPress (r4944)2408 * @since 2.4.0 bbPress (r4944) 2408 2409 */ 2409 2410 function bbp_list_replies( $args = array() ) { … … 2443 2444 * @see https://bbpress.trac.wordpress.org/ticket/2586 2444 2445 * 2445 * @since bbPress (r5377)2446 * @since 2.5.4 bbPress (r5377) 2446 2447 * 2447 2448 * @param int $reply_to
Note: See TracChangeset
for help on using the changeset viewer.