Changeset 3376 for branches/plugin/bbp-admin/bbp-forums.php
- Timestamp:
- 07/25/2011 06:40:41 AM (15 years ago)
- File:
-
- 1 edited
-
branches/plugin/bbp-admin/bbp-forums.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-admin/bbp-forums.php
r3343 r3376 31 31 32 32 /** 33 * The main bbPress forums admin loader (PHP4 compat)33 * The main bbPress forums admin loader 34 34 * 35 35 * @since bbPress (r2515) 36 36 * 37 * @uses BBP_Forums_Admin::_setup_globals() Setup the globals needed 38 * @uses BBP_Forums_Admin::_setup_actions() Setup the hooks and actions 39 */ 40 function BBP_Forums_Admin() { 41 $this->__construct(); 42 } 43 44 /** 45 * The main bbPress forums admin loader 46 * 47 * @since bbPress (r2515) 48 * 49 * @uses BBP_Forums_Admin::_setup_globals() Setup the globals needed 50 * @uses BBP_Forums_Admin::_setup_actions() Setup the hooks and actions 37 * @uses BBP_Forums_Admin::setup_globals() Setup the globals needed 38 * @uses BBP_Forums_Admin::setup_actions() Setup the hooks and actions 39 * @uses BBP_Forums_Admin::setup_help() Setup the help text 51 40 */ 52 41 function __construct() { 53 $this-> _setup_globals();54 $this-> _setup_actions();55 $this-> _setup_help();42 $this->setup_globals(); 43 $this->setup_actions(); 44 $this->setup_help(); 56 45 } 57 46 … … 68 57 * @uses bbp_get_reply_post_type() To get the reply post type 69 58 */ 70 function _setup_actions() {59 function setup_actions() { 71 60 72 61 // Add some general styling to the admin area … … 94 83 * @access private 95 84 */ 96 function _setup_globals() {85 function setup_globals() { 97 86 98 87 // Setup the post type for this admin component … … 106 95 * @access private 107 96 */ 108 function _setup_help() {97 function setup_help() { 109 98 110 99 // Define local variable(s)
Note: See TracChangeset
for help on using the changeset viewer.