Changeset 8319 for trunk/bp-members/bp-members-loader.php
- Timestamp:
- 04/24/2014 09:59:14 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-members/bp-members-loader.php
r8223 r8319 3 3 * BuddyPress Member Loader 4 4 * 5 * A members component to help contain all of the user specific slugs6 *7 5 * @package BuddyPress 8 6 * @subpackage Members … … 15 13 16 14 /** 17 * Start the members component creation process 18 * 19 * @since BuddyPress (1.5 )15 * Start the members component creation process. 16 * 17 * @since BuddyPress (1.5.0) 20 18 */ 21 19 public function __construct() { … … 31 29 32 30 /** 33 * Include files 34 * 35 * @global BuddyPress $bp The one true BuddyPress instance 31 * Include bp-members files. 32 * 33 * @see BP_Component::includes() for description of parameters. 34 * 35 * @param array $includes See {@link BP_Component::includes()}. 36 36 */ 37 37 public function includes( $includes = array() ) { … … 56 56 57 57 /** 58 * Set up globals58 * Set up bp-members global settings. 59 59 * 60 60 * The BP_MEMBERS_SLUG constant is deprecated, and only used here for 61 61 * backwards compatibility. 62 62 * 63 * @since BuddyPress (1.5) 63 * @since BuddyPress (1.5.0) 64 * 65 * @see BP_Component::setup_globals() for description of parameters. 66 * 67 * @param array $args See {@link BP_Component::setup_globals()}. 64 68 */ 65 69 public function setup_globals( $args = array() ) { … … 168 172 169 173 /** 170 * Setup BuddyBar navigation 174 * Set up component navigation. 175 * 176 * @since BuddyPress (1.5.0) 177 * 178 * @see BP_Component::setup_nav() for a description of arguments. 179 * 180 * @param array $main_nav Optional. See BP_Component::setup_nav() for 181 * description. 182 * @param array $sub_nav Optional. See BP_Component::setup_nav() for 183 * description. 171 184 */ 172 185 public function setup_nav( $main_nav = array(), $sub_nav = array() ) { … … 209 222 210 223 /** 211 * Sets up the title for pages and <title> 212 * 213 * @global BuddyPress $bp The one true BuddyPress instance 224 * Set up the title for pages and <title>. 214 225 */ 215 226 public function setup_title() { … … 231 242 } 232 243 244 /** 245 * Set up the bp-members component. 246 */ 233 247 function bp_setup_members() { 234 248 buddypress()->members = new BP_Members_Component();
Note: See TracChangeset
for help on using the changeset viewer.