BP_Admin_Setting_Forums
Main Forum Settings class.
Description
Source
File: bp-core/admin/settings/bp-admin-setting-forums.php
class BP_Admin_Setting_Forums extends BP_Admin_Setting_tab { public function initialize() { $this->tab_label = __( 'Forums', 'buddyboss' ); $this->tab_name = 'bp-forums'; $this->tab_order = 30; } public function is_active() { return bp_is_active( 'forums' ); } public function settings_save() { $sections = bbp_admin_get_settings_sections(); foreach ( (array) $sections as $section_id => $section ) { $fields = bbp_admin_get_settings_fields_for_section( $section_id ); foreach ( (array) $fields as $field_id => $field ) { $value = isset( $_POST[$field_id] ) ? $_POST[$field_id] : ''; if ( is_callable( $field['sanitize_callback'] ) ) { $value = $field['sanitize_callback']($value); } bp_update_option( $field_id, $value ); } } flush_rewrite_rules(); } public function settings_saved() { $url = bp_core_admin_setting_url( $this->tab_name, [ 'edited' => 'true' ] ); bp_core_redirect( $url ); } public function register_fields() { $sections = bbp_admin_get_settings_sections(); $fields = bbp_admin_get_settings_fields(); foreach ( (array) $sections as $section_id => $section ) { // Only proceed if current user can see this section if ( ! current_user_can( $section_id ) ) { continue; } // Only add section and fields if section has fields $fields = bbp_admin_get_settings_fields_for_section( $section_id ); if ( empty( $fields ) ) { continue; } // Add the section $this->add_section( $section_id, $section['title'], $section['callback'] ); // Loop through fields for this section foreach ( (array) $fields as $field_id => $field ) { if ( ! empty( $field['callback'] ) && !empty( $field['title'] ) ) { $this->add_field( $field_id, $field['title'], $field['callback'], $field['sanitize_callback'], $field['args'] ); } } } } }
Changelog
Version | Description |
---|---|
BuddyBoss 1.0.0 | Introduced. |
Methods
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.