Changeset 8435
- Timestamp:
- 05/20/2014 09:17:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-loader.php
r8434 r8435 36 36 class BuddyPress { 37 37 38 /** Magic ************************************************************* /38 /** Magic *****************************************************************/ 39 39 40 40 /** … … 51 51 private $data; 52 52 53 /** Not Magic ********************************************************* /53 /** Not Magic *************************************************************/ 54 54 55 55 /** … … 96 96 public $active_components = array(); 97 97 98 /** Option Overload *************************************************** /98 /** Option Overload *******************************************************/ 99 99 100 100 /** … … 103 103 public $options = array(); 104 104 105 /** Singleton ********************************************************* /105 /** Singleton *************************************************************/ 106 106 107 107 /** … … 146 146 } 147 147 148 /** Magic Methods ***************************************************** /148 /** Magic Methods *********************************************************/ 149 149 150 150 /** … … 206 206 public function __call( $name = '', $args = array() ) { unset( $name, $args ); return null; } 207 207 208 /** Private Methods *************************************************** /208 /** Private Methods *******************************************************/ 209 209 210 210 /** … … 300 300 private function setup_globals() { 301 301 302 /** Versions ************************************************** /302 /** Versions **********************************************************/ 303 303 304 304 $this->version = '2.1-alpha'; 305 305 $this->db_version = 8311; 306 306 307 /** Loading *************************************************** /307 /** Loading ***********************************************************/ 308 308 309 309 $this->load_deprecated = ! apply_filters( 'bp_ignore_deprecated', BP_IGNORE_DEPRECATED ); 310 310 311 /** Toolbar *************************************************** /311 /** Toolbar ***********************************************************/ 312 312 313 313 /** … … 316 316 $this->my_account_menu_id = ''; 317 317 318 /** URIs ****************************************************** /318 /** URIs **************************************************************/ 319 319 320 320 /** … … 329 329 $this->no_status_set = false; 330 330 331 /** Components ************************************************ /331 /** Components ********************************************************/ 332 332 333 333 /** … … 351 351 $this->is_single_item = false; 352 352 353 /** Root ****************************************************** /353 /** Root **************************************************************/ 354 354 355 355 // BuddyPress Root blog ID 356 356 $this->root_blog_id = (int) apply_filters( 'bp_get_root_blog_id', BP_ROOT_BLOG ); 357 357 358 /** Paths****************************************************** /358 /** Paths**************************************************************/ 359 359 360 360 // BuddyPress root directory … … 375 375 $this->old_themes_url = $this->plugin_url . 'bp-themes'; 376 376 377 /** Theme Compat ********************************************** /377 /** Theme Compat ******************************************************/ 378 378 379 379 $this->theme_compat = new stdClass(); // Base theme compatibility class 380 380 $this->filters = new stdClass(); // Used when adding/removing filters 381 381 382 /** Users ***************************************************** /382 /** Users *************************************************************/ 383 383 384 384 $this->current_user = new stdClass(); … … 419 419 $this->versions(); 420 420 421 /** Update/Install ******************************************** /421 /** Update/Install ****************************************************/ 422 422 423 423 // Theme compatability … … 527 527 } 528 528 529 /** Public Methods **************************************************** /529 /** Public Methods ********************************************************/ 530 530 531 531 /**
Note: See TracChangeset
for help on using the changeset viewer.