Changeset 7451 for trunk/bp-core/bp-core-loader.php
- Timestamp:
- 10/20/2013 07:21:38 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-loader.php
r7347 r7451 2 2 3 3 /** 4 * BuddyPress Core Loader 5 * 6 * Core contains the commonly used functions, classes, and API 's4 * BuddyPress Core Loader. 5 * 6 * Core contains the commonly used functions, classes, and APIs. 7 7 * 8 8 * @package BuddyPress … … 16 16 17 17 /** 18 * Start the members component creation process 19 * 20 * @since BuddyPress (1.5 )18 * Start the members component creation process. 19 * 20 * @since BuddyPress (1.5.0) 21 21 * 22 22 * @uses BP_Core::bootstrap() … … 33 33 34 34 /** 35 * Populate the global data needed before BuddyPress can continue 35 * Populate the global data needed before BuddyPress can continue. 36 36 * 37 37 * This involves figuring out the currently required, active, deactive, 38 38 * and optional components. 39 39 * 40 * @since BuddyPress (1.5 )40 * @since BuddyPress (1.5.0) 41 41 */ 42 42 private function bootstrap() { … … 109 109 } 110 110 111 /** 112 * Include bp-core files. 113 * 114 * @see BP_Component::includes() for description of parameters. 115 * 116 * @param array $includes See {@link BP_Component::includes()}. 117 */ 111 118 public function includes( $includes = array() ) { 112 119 … … 122 129 123 130 /** 131 * Set up bp-core global settings. 132 * 124 133 * Sets up a majority of the BuddyPress globals that require a minimal 125 134 * amount of processing, meaning they cannot be set in the BuddyPress class. 126 135 * 127 * @since BuddyPress (1.5) 136 * @since BuddyPress (1.5.0) 137 * 138 * @see BP_Component::setup_globals() for description of parameters. 139 * 140 * @param array $args See {@link BP_Component::setup_globals()}. 128 141 */ 129 142 public function setup_globals( $args = array() ) { … … 185 198 186 199 /** 187 * Setup BuddyBar navigation 188 * 189 * @since BuddyPress (1.5) 190 */ 191 public function setup_nav( $main_nav = array(), $sub_nav = array() ) { 200 * Set up component navigation. 201 * 202 * @since BuddyPress (1.5.0) 203 * 204 * @see BP_Component::setup_nav() for a description of arguments. 205 * 206 * @param array $main_nav Optional. See BP_Component::setup_nav() for 207 * description. 208 * @param array $sub_nav Optional. See BP_Component::setup_nav() for 209 * description. 210 */ 211 public function setup_nav( $main_nav = array(), $sub_nav = array() ) { 192 212 $bp = buddypress(); 193 213 … … 228 248 229 249 /** 230 * Set up the BuddyPress Core component231 * 232 * @since BuddyPress (1.6 )233 * 234 * @global BuddyPress $bp 250 * Set up the BuddyPress Core component. 251 * 252 * @since BuddyPress (1.6.0) 253 * 254 * @global BuddyPress $bp BuddyPress global settings object. 235 255 */ 236 256 function bp_setup_core() {
Note: See TracChangeset
for help on using the changeset viewer.