PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 1.1.0
Forumax – AI Powered Advanced Community Forum Plugin v1.1.0
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 / pro-settings.php

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

41 lines 1.1 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-pro' ),
12 'framework_class' => 'bbp-core-settings',
13 'theme' => 'dark',
14
15 'menu_title' => __( '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 ]
25 );
26
27 // Widgets Settings.
28 define( 'BBPCPRO_SETTINGS_PATH', plugin_dir_path( __FILE__ ) );
29
30 include BBPCPRO_SETTINGS_PATH . 'pro-options/options_admin_ui.php';
31 include BBPCPRO_SETTINGS_PATH . 'pro-options/options_solved_topics.php';
32 include BBPCPRO_SETTINGS_PATH . 'pro-options/options_private_replies.php';
33 include BBPCPRO_SETTINGS_PATH . 'pro-options/options_voting.php';
34 include BBPCPRO_SETTINGS_PATH . 'pro-options/options_attachments.php';
35
36 if ( ! class_exists( 'bbPress' ) ) {
37 return;
38 }
39
40 }
41