Changeset 9739 for trunk/src/bp-loader.php
- Timestamp:
- 04/11/2015 02:35:35 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-loader.php
r9723 r9739 315 315 /** Loading ***********************************************************/ 316 316 317 /** 318 * Filters the load_deprecated property value. 319 * 320 * @since BuddyPress (2.0.0) 321 * 322 * @param constant BP_IGNORE_DEPRECATED Whether or not to ignore deprecated functionality. 323 */ 317 324 $this->load_deprecated = ! apply_filters( 'bp_ignore_deprecated', BP_IGNORE_DEPRECATED ); 318 325 … … 362 369 363 370 // BuddyPress Root blog ID 371 /** 372 * Filters the BuddyPress Root blog ID. 373 * 374 * @since BuddyPress (1.5.0) 375 * 376 * @param constant BP_ROOT_BLOG BuddyPress Root blog ID. 377 */ 364 378 $this->root_blog_id = (int) apply_filters( 'bp_get_root_blog_id', BP_ROOT_BLOG ); 365 379 … … 516 530 } 517 531 518 // All BuddyPress actions are setup (includes bbp-core-hooks.php) 532 /** 533 * Fires after the setup of all BuddyPress actions. 534 * 535 * Includes bbp-core-hooks.php. 536 * 537 * @since BuddyPress (1.7.0) 538 * 539 * @param BuddyPress $this. Current BuddyPress instance. Passed by reference. 540 */ 519 541 do_action_ref_array( 'bp_after_setup_actions', array( &$this ) ); 520 542 }
Note: See TracChangeset
for help on using the changeset viewer.