Changeset 3232 for trunk/bp-loader.php
- Timestamp:
- 09/06/2010 04:24:57 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-loader.php
r2925 r3232 7 7 Version: 1.3-bleeding 8 8 Author URI: http://buddypress.org/developers/ 9 Network: true10 9 */ 11 10 … … 62 61 include( BP_PLUGIN_DIR . '/bp-xprofile.php' ); 63 62 64 /* Allow dependent plugins to hook into BuddyPress in a safe way */ 63 /** 64 * bp_loaded() 65 * 66 * Allow dependent plugins and core actions to attach themselves in a safe way. 67 * 68 * See bp-core.php for the following core actions: 69 * - bp_init|bp_setup_globals|bp_setup_root_components|bp_setup_nav|bp_register_widgets 70 */ 65 71 function bp_loaded() { 66 do_action( 'bp_ init' );72 do_action( 'bp_loaded' ); 67 73 } 68 add_action( 'plugins_loaded', 'bp_loaded' );74 add_action( 'plugins_loaded', 'bp_loaded', 20 ); 69 75 } 70 76
Note: See TracChangeset
for help on using the changeset viewer.