Changeset 4912
- Timestamp:
- 07/30/2011 10:14:36 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-component.php
r4907 r4912 137 137 138 138 // Call action 139 do_action( 'bp_' . $this->id . ' setup_globals' );139 do_action( 'bp_' . $this->id . '_setup_globals' ); 140 140 } 141 141 … … 170 170 171 171 // Call action 172 do_action( 'bp_' . $this->id . ' includes' );172 do_action( 'bp_' . $this->id . '_includes' ); 173 173 } 174 174 … … 214 214 215 215 // Additional actions can be attached here 216 do_action( 'bp_' . $this->id . ' setup_actions' );216 do_action( 'bp_' . $this->id . '_setup_actions' ); 217 217 } 218 218 … … 238 238 239 239 // Call action 240 do_action( 'bp_' . $this->id . ' setup_nav' );240 do_action( 'bp_' . $this->id . '_setup_nav' ); 241 241 } 242 242 … … 272 272 273 273 // Call action 274 do_action( 'bp_' . $this->id . ' setup_admin_bar' );274 do_action( 'bp_' . $this->id . '_setup_admin_bar' ); 275 275 } 276 276 … … 283 283 */ 284 284 function setup_title( ) { 285 do_action( 'bp_' . $this->id . ' setup_title' );285 do_action( 'bp_' . $this->id . '_setup_title' ); 286 286 } 287 287
Note: See TracChangeset
for help on using the changeset viewer.