Changeset 13757
- Timestamp:
- 03/09/2024 04:40:09 AM (13 months ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-template.php
r13724 r13757 3771 3771 * @since 1.7.0 3772 3772 * 3773 * @global BP_Activity_Template $activities_template The Activity template object. 3774 * 3773 3775 * @return bool|array An array of IDs, or false if none are found. 3774 3776 */ -
trunk/src/bp-activity/classes/class-bp-activity-activity.php
r13724 r13757 174 174 * 175 175 * @since 1.0.0 176 * 177 * @global wpdb $wpdb WordPress database object. 176 178 */ 177 179 public function populate() { … … 227 229 * 228 230 * @since 1.0.0 231 * 232 * @global wpdb $wpdb WordPress database object. 229 233 * 230 234 * @return WP_Error|bool True on success. … … 350 354 * @see WP_Meta_Query::queries for a description of the 'meta_query' 351 355 * parameter format. 356 * 357 * @global wpdb $wpdb WordPress database object. 352 358 * 353 359 * @param array $args { … … 882 888 * @since 2.0.0 883 889 * 890 * @global wpdb $wpdb WordPress database object. 891 * 884 892 * @param array $activity_ids Array of activity IDs. 885 893 * @return array … … 1240 1248 * @since 10.0.0 Parameters were made optional. 1241 1249 * 1250 * @global wpdb $wpdb WordPress database object. 1251 * 1242 1252 * @param array $args { 1243 1253 * An array of arguments. All items are optional. … … 1351 1361 * 1352 1362 * @since 1.2.0 1363 * 1364 * @global wpdb $wpdb WordPress database object. 1353 1365 * 1354 1366 * @param array $args { … … 1529 1541 * @since 1.2.0 1530 1542 * 1543 * @global wpdb $wpdb WordPress database object. 1544 * 1531 1545 * @deprecated 2.3.0 1532 1546 * … … 1830 1844 * @since 1.2.0 1831 1845 * 1846 * @global wpdb $wpdb WordPress database object. 1847 * 1832 1848 * @param bool $skip_last_activity If true, components will not be 1833 1849 * included if the only activity type associated with them is … … 1880 1896 * 1881 1897 * @see BP_Activity_Activity::get_filter_sql() 1898 * 1899 * @global wpdb $wpdb WordPress database object. 1882 1900 * 1883 1901 * @param string $field The database field. … … 2002 2020 * @since 1.2.0 2003 2021 * 2022 * @global wpdb $wpdb WordPress database object. 2023 * 2004 2024 * @return string ISO timestamp. 2005 2025 */ … … 2037 2057 * @since 1.1.0 2038 2058 * 2059 * @global wpdb $wpdb WordPress database object. 2060 * 2039 2061 * @param string $content The content to filter by. 2040 2062 * @return int|false The ID of the first matching item if found, otherwise false. … … 2055 2077 * @since 1.2.0 2056 2078 * 2079 * @global wpdb $wpdb WordPress database object. 2080 * 2057 2081 * @param int $user_id The ID of the user whose activity you want to mark hidden. 2058 2082 * @return mixed -
trunk/src/bp-activity/classes/class-bp-activity-feed.php
r13582 r13757 91 91 * @since 1.8.0 92 92 * 93 * @global WP_Query $wp_query WordPress query object. 94 * 93 95 * @param array $args Optional. 94 96 */ … … 331 333 * 332 334 * @since 1.9.0 335 * 336 * @global WP_Query $wp_query WordPress query object. 333 337 */ 334 338 protected function http_headers() { -
trunk/src/bp-activity/classes/class-bp-activity-query.php
r13634 r13757 109 109 * @since 2.2.0 110 110 * 111 * @global wpdb $wpdb WordPress database object. 112 * 111 113 * @param array $clause Array of arguments belonging to the clause. 112 114 * @param array $parent_query Parent query to which the clause belongs. -
trunk/src/bp-blogs/bp-blogs-activity.php
r13642 r13757 672 672 * @since 1.0.0 673 673 * 674 * @global wpdb $wpdb WordPress database object. 675 * 674 676 * @param int $post_id ID of the post to be removed. 675 677 * @param int $blog_id Optional. Defaults to current blog ID. … … 1023 1025 * @since 2.5.0 Used for any synced Post type comments, in wp-admin or front-end contexts. 1024 1026 * 1027 * @global wpdb $wpdb WordPress database object. 1028 * 1025 1029 * @param array $args Arguments passed from bp_parse_args() in bp_has_activities(). 1026 1030 * @return array $args … … 1201 1205 * @since 2.0.0 1202 1206 * 1207 * @global BP_Activity_Template $activities_template The Activity template object. 1208 * 1203 1209 * @param bool $retval Is activity commenting enabled for this activity entry. 1204 1210 * @return bool … … 1332 1338 * @since 2.0.0 1333 1339 * 1340 * @global BP_Activity_Template $activities_template The Activity template object. 1341 * 1334 1342 * @param string $retval The activity comment permalink. 1335 1343 * @return string -
trunk/src/bp-blogs/bp-blogs-functions.php
r13431 r13757 88 88 * @since 2.6.0 Accepts $args as a parameter. 89 89 * 90 * @global wpdb $wpdb WordPress database object. 91 * 90 92 * @param array $args { 91 93 * Array of arguments. … … 861 863 * modify this behavior. 862 864 * 865 * @global wpdb $wpdb WordPress database object. 866 * 863 867 * @param int $user_id The ID of the user. 864 868 * @param string|bool $role User's WordPress role for this blog ID. … … 936 940 /** 937 941 * Remove a blog-user pair from BP's blog tracker. 942 * 943 * @global wpdb $wpdb WordPress database object. 938 944 * 939 945 * @param int $user_id ID of the user whose blog is being removed.
Note: See TracChangeset
for help on using the changeset viewer.