BP_Settings_Component
Creates our Settings component.
Description
Source
File: bp-settings/classes/class-bp-settings-component.php
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | class BP_Settings_Component extends BP_Component { /** * Start the settings component creation process. * * @since BuddyPress 1.5.0 */ public function __construct() { parent::start( 'settings' , __( 'Account' , 'buddyboss' ), buddypress()->plugin_dir, array ( 'adminbar_myaccount_order' => 21 ) ); } /** * Include files. * * @since BuddyPress 1.5.0 * * @param array $includes Array of values to include. Not used. */ public function includes( $includes = array () ) { parent::includes( array ( 'template' , 'functions' , ) ); } /** * Late includes method. * * Only load up certain code when on specific pages. * * @since BuddyPress 3.0.0 */ public function late_includes() { // Bail if PHPUnit is running. if ( defined( 'BP_TESTS_DIR' ) ) { return ; } // Bail if not on Settings component. if ( ! bp_is_settings_component() ) { return ; } $actions = array ( 'notifications' , 'capabilities' , 'delete-account' , 'export' ); // Authenticated actions. if ( is_user_logged_in() ) { if ( ! bp_current_action() || bp_is_current_action( 'general' ) ) { require $this ->path . 'bp-settings/actions/general.php' ; // Specific to post requests. } elseif ( bp_is_post_request() && in_array( bp_current_action(), $actions , true ) ) { require $this ->path . 'bp-settings/actions/' . bp_current_action() . '.php' ; } } // Screens - User profile integration. if ( bp_is_user() ) { require $this ->path . 'bp-settings/screens/general.php' ; // Sub-nav items. if ( in_array( bp_current_action(), $actions , true ) ) { require $this ->path . 'bp-settings/screens/' . bp_current_action() . '.php' ; } } } /** * Setup globals. * * The BP_SETTINGS_SLUG constant is deprecated, and only used here for * backwards compatibility. * * @since BuddyPress 1.5.0 * * @param array $args Array of arguments. */ public function setup_globals( $args = array () ) { // Define a slug, if necessary. if ( ! defined( 'BP_SETTINGS_SLUG' ) ) { define( 'BP_SETTINGS_SLUG' , $this ->id ); } // All globals for settings component. parent::setup_globals( array ( 'slug' => BP_SETTINGS_SLUG, 'has_directory' => false, ) ); } /** * Set up navigation. * * @since BuddyPress 1.5.0 * * @param array $main_nav Array of main nav items. * @param array $sub_nav Array of sub nav items. */ public function setup_nav( $main_nav = array (), $sub_nav = array () ) { // Determine user to use. if ( bp_displayed_user_domain() ) { $user_domain = bp_displayed_user_domain(); } elseif ( bp_loggedin_user_domain() ) { $user_domain = bp_loggedin_user_domain(); } else { return ; } $access = bp_core_can_edit_settings(); $slug = bp_get_settings_slug(); $settings_link = trailingslashit( $user_domain . $slug ); // Add the settings navigation item. $main_nav = array ( 'name' => __( 'Account' , 'buddyboss' ), 'slug' => $slug , 'position' => 21, 'show_for_displayed_user' => $access , 'screen_function' => 'bp_settings_screen_general' , 'default_subnav_slug' => 'general' ); // Add General Settings nav item. $sub_nav [] = array ( 'name' => __( 'Login Information' , 'buddyboss' ), 'slug' => 'general' , 'parent_url' => $settings_link , 'parent_slug' => $slug , 'screen_function' => 'bp_settings_screen_general' , 'position' => 10, 'user_has_access' => $access ); // Add Email nav item. Formerly called 'Notifications', we // retain the old slug and function names for backward compat. $sub_nav [] = array ( 'name' => __( 'Email Preferences' , 'buddyboss' ), 'slug' => 'notifications' , 'parent_url' => $settings_link , 'parent_slug' => $slug , 'screen_function' => 'bp_settings_screen_notification' , 'position' => 20, 'user_has_access' => $access ); $sub_nav [] = array ( 'name' => __( 'Export Data' , 'buddyboss' ), 'slug' => 'export' , 'parent_url' => $settings_link , 'parent_slug' => $slug , 'screen_function' => 'bp_settings_screen_export_data' , 'position' => 80, 'user_has_access' => $access ); // Add Spam Account nav item. if ( bp_current_user_can( 'bp_moderate' ) ) { $sub_nav [] = array ( 'name' => __( 'Capabilities' , 'buddyboss' ), 'slug' => 'capabilities' , 'parent_url' => $settings_link , 'parent_slug' => $slug , 'screen_function' => 'bp_settings_screen_capabilities' , 'position' => 80, 'user_has_access' => ! bp_is_my_profile() ); } // Add Delete Account nav item. if ( ( ! bp_disable_account_deletion() && bp_is_my_profile() ) || bp_current_user_can( 'delete_users' ) ) { $sub_nav [] = array ( 'name' => __( 'Delete Account' , 'buddyboss' ), 'slug' => 'delete-account' , 'parent_url' => $settings_link , 'parent_slug' => $slug , 'screen_function' => 'bp_settings_screen_delete_account' , 'position' => 90, 'user_has_access' => ! is_super_admin( bp_displayed_user_id() ) ); } parent::setup_nav( $main_nav , $sub_nav ); } /** * Set up the Toolbar. * * @since BuddyPress 1.5.0 * * @param array $wp_admin_nav Array of Admin Bar items. */ public function setup_admin_bar( $wp_admin_nav = array () ) { // Menus for logged in user. if ( is_user_logged_in() ) { // Setup the logged in user variables. $settings_link = trailingslashit( bp_loggedin_user_domain() . bp_get_settings_slug() ); // Add main Settings menu. $wp_admin_nav [] = array ( 'parent' => buddypress()->my_account_menu_id, 'id' => 'my-account-' . $this ->id, 'title' => __( 'Account' , 'buddyboss' ), 'href' => $settings_link ); // General Account. $wp_admin_nav [] = array ( 'parent' => 'my-account-' . $this ->id, 'id' => 'my-account-' . $this ->id . '-general' , 'title' => __( 'Login Information' , 'buddyboss' ), 'href' => $settings_link , 'position' => 10 ); // Notifications - only add the tab when there is something to display there. if ( has_action( 'bp_notification_settings' ) ) { $wp_admin_nav [] = array ( 'parent' => 'my-account-' . $this ->id, 'id' => 'my-account-' . $this ->id . '-notifications' , 'title' => __( 'Email Preferences' , 'buddyboss' ), 'href' => trailingslashit( $settings_link . 'notifications' ), 'position' => 20 ); } $wp_admin_nav [] = array ( 'parent' => 'my-account-' . $this ->id, 'id' => 'my-account-' . $this ->id . '-export' , 'title' => __( 'Export Data' , 'buddyboss' ), 'href' => trailingslashit( $settings_link . 'export/' ), 'position' => 50 ); // Delete Account if ( !bp_current_user_can( 'bp_moderate' ) && ! bp_core_get_root_option( 'bp-disable-account-deletion' ) ) { $wp_admin_nav [] = array ( 'parent' => 'my-account-' . $this ->id, 'id' => 'my-account-' . $this ->id . '-delete-account' , 'title' => __( 'Delete Account' , 'buddyboss' ), 'href' => trailingslashit( $settings_link . 'delete-account' ), 'position' => 90 ); } } parent::setup_admin_bar( $wp_admin_nav ); } } |
Changelog
Version | Description |
---|---|
BuddyPress 1.5.0 | Introduced. |
Methods
- __construct — Start the settings component creation process.
- includes — Include files.
- late_includes — Late includes method.
- rest_api_init — Init the BuddyBoss REST API.
- setup_admin_bar — Set up the Toolbar.
- setup_globals — Setup globals.
- setup_nav — Set up navigation.
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.