Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/13/2024 07:39:42 PM (8 months ago)
Author:
johnjamesjacoby
Message:

WPCS: param & global docs corrections.

Some were missing, out-of-order, or potentially wrong based on conditional logic (I.E. when specific class names are juggled based on Site/Network admin area contexts). For those, I opted just to use "object" rather than the exact class names, because they're lengthy & ugly & make the docs more difficult to read. Feel free to override that decision later!

See: #9174.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/classes/class-bp-members-admin.php

    r13878 r13927  
    18191819     * @since 2.0.0
    18201820     *
    1821      * @global $bp_members_signup_list_table
     1821     * @global object $bp_members_signup_list_table
    18221822     */
    18231823    public function signups_admin_load() {
     
    22872287     * @since 2.0.0
    22882288     *
    2289      * @global $plugin_page
    2290      * @global $bp_members_signup_list_table
     2289     * @global string $plugin_page
     2290     * @global object $bp_members_signup_list_table
    22912291     */
    22922292    public function signups_admin_index() {
     
    28682868     * @since 8.0.0
    28692869     *
    2870      * @global $bp_members_invitations_list_table
     2870     * @global object $bp_members_invitations_list_table
    28712871     */
    28722872    public function members_invitations_admin_load() {
     
    31953195     * @since 8.0.0
    31963196     *
    3197      * @global $plugin_page
    3198      * @global $bp_members_invitations_list_table
     3197     * @global string $plugin_page
     3198     * @global object $bp_members_invitations_list_table
    31993199     */
    32003200    public function invitations_admin_index() {
Note: See TracChangeset for help on using the changeset viewer.