PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 1.2.4
Forumax – AI Powered Advanced Community Forum Plugin v1.2.4
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / includes / admin / settings / options / settings.php

settings.php in Forumax – AI Powered Advanced Community Forum Plugin 1.2.4, at includes/admin/settings/options/settings.php

50 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( class_exists( 'CSF' ) ) {
3
4 // Set a unique slug-like ID.
5 $prefix = 'bbp_core_settings';
6
7 // Create options.
8 CSF::createOptions(
9 $prefix,
10 [
11 'framework_title' => __( 'BBP Core Settings', 'bbp-core' ),
12 'framework_class' => 'bbp-core-settings',
13 'theme' => 'dark',
14
15 'menu_title' => __( 'BBPC Settings', 'bbp-core-pro' ),
16 'menu_slug' => 'bbp-core-settings',
17 'menu_type' => 'submenu',
18 'menu_parent' => 'bbp-core',
19
20 // Footer.
21 'footer_text' => '',
22 'footer_after' => '',
23 'footer_credit' => '',
24 // customizer
25 'show_in_customizer' => bbpc_get_opt( 'customizer_visibility' ),
26 ]
27 );
28
29 // Widgets Settings.
30 define( 'BBPC_SETTINGS_PATH', plugin_dir_path( __FILE__ ) );
31
32 include BBPC_SETTINGS_PATH . 'options_admin_ui.php';
33 include BBPC_SETTINGS_PATH . 'options_solved_topics.php';
34 include BBPC_SETTINGS_PATH . 'options_private_replies.php';
35 include BBPC_SETTINGS_PATH . 'options_voting.php';
36 include BBPC_SETTINGS_PATH . 'options_customizer.php';
37 include BBPC_SETTINGS_PATH . 'options_attachments.php';
38 include BBPC_SETTINGS_PATH . 'options_mini_profile.php';
39 include BBPC_SETTINGS_PATH . 'options_shortcode.php';
40 include BBPC_SETTINGS_PATH . 'options_notification.php';
41 include BBPC_SETTINGS_PATH . 'options_appearance.php';
42
43
44 if ( ! class_exists( 'bbPress' ) ) {
45 return;
46 }
47
48 }
49
50