Changeset 3911 for branches/plugin/bbpress.php
- Timestamp:
- 05/22/2012 08:00:55 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbpress.php
r3907 r3911 262 262 263 263 /** 264 * @var array Optional Overloads default options retrieved from get_option() 264 * Overloads default options retrieved from get_option() 265 * 266 * @var array Optional array( $key => $value ); 265 267 */ 266 268 public $options = array(); 267 269 268 /** Function Overload *****************************************************/269 270 /**271 * @var array Optional Overloads WordPress functions with new functions.272 */ 273 public $ functions = array();270 /** 271 * Overloads default user options retrieved from get_user_option() 272 * 273 * @var array Optional array( $user_id => array( $key => $value ) ); 274 */ 275 public $user_options = array(); 274 276 275 277 /** Singleton *************************************************************/ … … 462 464 require( $this->plugin_dir . 'bbp-includes/bbp-user-functions.php' ); // User functions 463 465 require( $this->plugin_dir . 'bbp-includes/bbp-user-template.php' ); // User template tags 466 require( $this->plugin_dir . 'bbp-includes/bbp-user-options.php' ); // User options 464 467 465 468 /** Admin *************************************************************/
Note: See TracChangeset
for help on using the changeset viewer.