Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
11/06/2011 06:52:09 AM (13 years ago)
Author:
johnjamesjacoby
Message:

First pass at updating the admin/toolbar for WordPress 3.3. See #3596.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-hooks.php

    r5121 r5289  
    1616
    1717// Attach bp_init to WordPress init
    18 add_action( 'init',       'bp_init'                    );
     18add_action( 'init',           'bp_init'                     );
    1919
    2020// Parse the URI and set globals
    21 add_action( 'bp_init',    'bp_core_set_uri_globals', 2 );
     21add_action( 'bp_init',        'bp_core_set_uri_globals', 2 );
    2222
    2323// Setup component globals
    24 add_action( 'bp_init',    'bp_setup_globals',        4 );
     24add_action( 'bp_init',        'bp_setup_globals',         4 );
    2525
    2626// Setup the navigation menu
    27 add_action( 'bp_init',    'bp_setup_nav',            7 );
     27add_action( 'bp_init',        'bp_setup_nav',             7 );
    2828
    2929// Setup the navigation menu
    30 add_action( 'admin_bar_menu',    'bp_setup_admin_bar' );
     30add_action( 'admin_bar_menu', 'bp_setup_admin_bar',      11 );
    3131
    3232// Setup the title
    33 add_action( 'bp_init',    'bp_setup_title',          9 );
     33add_action( 'bp_init',        'bp_setup_title',           9 );
    3434
    3535// Setup widgets
    36 add_action( 'bp_loaded',  'bp_setup_widgets'           );
     36add_action( 'bp_loaded',      'bp_setup_widgets'            );
    3737
    3838// Setup admin bar
    39 add_action( 'bp_loaded',  'bp_core_load_admin_bar'     );
     39add_action( 'bp_loaded',      'bp_core_load_admin_bar'      );
    4040
    4141/** The hooks *****************************************************************/
Note: See TracChangeset for help on using the changeset viewer.