Changeset 7289
- Timestamp:
- 07/22/2013 07:00:29 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-groups/bp-groups-classes.php
r7275 r7289 993 993 * @return array 994 994 */ 995 public function get_include_ids( $include ) {995 public function get_include_ids( $include = array() ) { 996 996 // The following args are specific to group member queries, and 997 997 // are not present in the query_vars of a normal BP_User_Query. -
trunk/bp-settings/bp-settings-loader.php
r6861 r7289 31 31 * @global BuddyPress $bp The one true BuddyPress instance 32 32 */ 33 public function includes( ) {33 public function includes( $includes = array() ) { 34 34 parent::includes( array( 35 35 'actions', … … 48 48 * @since BuddyPress (1.5) 49 49 */ 50 public function setup_globals( ) {50 public function setup_globals( $args = array() ) { 51 51 52 52 // Define a slug, if necessary … … 64 64 * Setup BuddyBar navigation 65 65 */ 66 public function setup_nav( ) {66 public function setup_nav( $main_nav = array(), $sub_nav = array() ) { 67 67 68 68 // Define local variable … … 144 144 * Set up the Toolbar 145 145 */ 146 public function setup_admin_bar( ) {146 public function setup_admin_bar( $wp_admin_nav = array() ) { 147 147 148 148 // The instance
Note: See TracChangeset
for help on using the changeset viewer.