Skip to:
Content

bbPress.org


Ignore:
Timestamp:
04/23/2018 03:53:41 AM (8 years ago)
Author:
johnjamesjacoby
Message:

BuddyPress: add more fully_loaded() methods to component classes.

This will allow an entry point for plugins to alter these classes how they see fit.

Fixes #3192.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/extend/buddypress/members.php

    r6805 r6808  
    3131        $this->setup_actions();
    3232        $this->setup_filters();
     33        $this->fully_loaded();
    3334    }
    3435
     
    7576    }
    7677
     78    /**
     79     * Allow the variables, actions, and filters to be modified by third party
     80     * plugins and themes.
     81     *
     82     * @since 2.6.0 bbPress (r6808)
     83     */
     84    private function fully_loaded() {
     85        do_action_ref_array( 'bbp_buddypress_members_loaded', array( $this ) );
     86    }
     87
    7788    /** Filters ***************************************************************/
    7889
Note: See TracChangeset for help on using the changeset viewer.