Changeset 13499
- Timestamp:
- 06/09/2023 12:52:29 AM (18 months ago)
- Location:
- trunk/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/bp-members-functions.php
r13493 r13499 880 880 * @since 1.6.0 881 881 * 882 * @global BP_Core_Members_Template $members_template The Members template loop class. 883 * 882 884 * @param int $user_id The ID for the user. 883 885 * @return bool True if spammer, otherwise false. … … 2456 2458 * @since 2.0.0 2457 2459 * 2460 * @global string $error The error message. 2461 * 2458 2462 * @see bp_core_signup_disable_inactive() 2459 2463 */ … … 2625 2629 * 2626 2630 * @since 1.8.0 2631 * 2632 * @global string $error The error message. 2627 2633 */ 2628 2634 function bp_live_spammer_login_error() { -
trunk/src/bp-members/classes/class-bp-members-admin.php
r13433 r13499 723 723 * 724 724 * @since 2.1.0 725 * 726 * @global string $submenu_file The name of the submenu file. 727 * @global string $parent_file The name of the parent file. 725 728 */ 726 729 public function profile_admin_head() { … … 1684 1687 * @since 2.0.0 1685 1688 * 1689 * @global wpdb $wpdb The WordPress database object. 1690 * 1686 1691 * @param WP_User_Query|null $query The users query. 1687 1692 * @return WP_User_Query|null The users query without the signups. … … 1725 1730 * 1726 1731 * @since 2.0.0 1732 * 1733 * @global string $role The name of the WP Role. 1727 1734 * 1728 1735 * @param array $views WP List Table views. … … 2763 2770 * Filter WP Admin users list table to include users of the specified type. 2764 2771 * 2765 * @param WP_Query $query2766 *2767 2772 * @since 2.7.0 2773 * 2774 * @global string $pagenow The filename of the current screen. 2775 * 2776 * @param WP_Query $query The WordPress Query object. 2768 2777 */ 2769 2778 public function users_table_filter_by_type( $query ) { -
trunk/src/bp-members/classes/class-bp-members-component.php
r13495 r13499 288 288 * 289 289 * @see BP_Component::setup_globals() for description of parameters. 290 * 291 * @global wpdb $wpdb The WordPress database object. 290 292 * 291 293 * @param array $args See {@link BP_Component::setup_globals()}. -
trunk/src/bp-members/classes/class-bp-members-list-table.php
r13476 r13499 58 58 * 59 59 * @since 2.0.0 60 * 61 * @global string $usersearch The users search terms. 60 62 */ 61 63 public function prepare_items() { … … 98 100 * @since 2.5.0 99 101 * 100 * @global string $role The name of role the users screens is filtered by 102 * @global string $role The name of role the users screens is filtered by. 101 103 */ 102 104 public function views() { -
trunk/src/bp-members/classes/class-bp-members-ms-list-table.php
r13476 r13499 58 58 * 59 59 * @since 2.0.0 60 * 61 * @global string $usersearch The users search terms. 62 * @global string $mode The display mode. 60 63 */ 61 64 public function prepare_items() { … … 396 399 * @since 2.0.0 397 400 * 401 * @global string $mode The display mode. 402 * 398 403 * @param object|null $signup_object The signup data object. 399 404 */ … … 414 419 * 415 420 * @since 2.0.0 421 * 422 * @global string $mode The display mode. 416 423 * 417 424 * @param object|null $signup_object Signup object instance. -
trunk/src/bp-members/classes/class-bp-signup.php
r13469 r13499 173 173 * 174 174 * @since 2.0.0 175 * 176 * @global wpdb $wpdb The WordPress database object. 175 177 */ 176 178 public function populate() { … … 258 260 * @since 2.0.0 259 261 * @since 6.0.0 Added a list of allowed orderby parameters. 262 * 263 * @global wpdb $wpdb The WordPress database object. 260 264 * 261 265 * @param array $args { … … 443 447 * @since 2.0.0 444 448 * 449 * @global wpdb $wpdb The WordPress database object. 450 * 445 451 * @param array $args { 446 452 * Array of arguments for signup addition. … … 528 534 * 529 535 * @since 2.0.0 536 * 537 * @global wpdb $wpdb The WordPress database object. 530 538 * 531 539 * @param string $user_login User login string. … … 642 650 * @since 2.0.0 643 651 * 652 * @global wpdb $wpdb The WordPress database object. 653 * 644 654 * @param string $key Activation key. 645 655 * @return bool True on success, false on failure. … … 715 725 * 716 726 * @since 2.0.0 727 * 728 * @global wpdb $wpdb The WordPress database object. 717 729 * 718 730 * @param array $args { … … 983 995 * @since 2.0.0 984 996 * 997 * @global wpdb $wpdb The WordPress database object. 998 * 985 999 * @param array $signup_ids Single ID or list of IDs to delete. 986 1000 * @return array -
trunk/src/bp-messages/classes/class-bp-messages-thread.php
r13414 r13499 979 979 * @since 1.0.0 980 980 * 981 * @global wpdb $wpdb The WordPress database object. 982 * 981 983 * @param int $user_id The user ID. 982 984 * @param string $box The type of mailbox to get. Either 'inbox' or 'sentbox'. -
trunk/src/bp-notifications/bp-notifications-adminbar.php
r13442 r13499 18 18 * @since 1.9.0 19 19 * 20 * @ param WP_Admin_Bar $wp_admin_bar WordPress object implementing a Toolbar API, passed by reference.20 * @global WP_Admin_Bar $wp_admin_bar The WordPress object implementing a Toolbar API. 21 21 * 22 22 * @return bool -
trunk/src/bp-notifications/bp-notifications-functions.php
r13497 r13499 778 778 * @since 2.3.0 779 779 * 780 * @global wpdb $wpdb WordPress database object.781 *782 780 * @param int $notification_id ID of the notification item whose metadata is being deleted. 783 781 * @param string $meta_key Optional. The key of the metadata being deleted. If -
trunk/src/bp-notifications/classes/class-bp-notifications-notification.php
r13414 r13499 910 910 * @since 10.0.0 911 911 * 912 * @global wpdb $wpdb The WordPress database object. 913 * 912 914 * @param string $field The name of the db field of the items to update. 913 915 * Possible values are `id` or `item_id`. … … 1007 1009 * 1008 1010 * @since 10.0.0 1011 * 1012 * @global wpdb $wpdb The WordPress database object. 1009 1013 * 1010 1014 * @param string $field The name of the db field of the items to delete.
Note: See TracChangeset
for help on using the changeset viewer.