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.php

Admin.php in Forumax – AI Powered Advanced Community Forum Plugin 1.1.0, at includes/Admin.php

43 lines 934 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 class Admin {
3 /**
4 * Admin class construct
5 */
6 public function __construct() {
7
8 add_filter( 'admin_body_class', [ $this, 'body_class' ] );
9
10 new admin\Menu();
11 $this->load_csf();
12 }
13
14 /**
15 * Load Codestar Framework and related settings.
16 *
17 * @return void
18 */
19 public function load_csf() {
20 require BBPC_DIR . 'includes/admin/settings/codestar-framework/codestar-framework.php';
21
22 if ( class_exists( 'BBPCorePro' ) ) {
23 require BBPC_DIR . 'includes/admin/settings/options/pro-settings.php';
24 } else {
25 require BBPC_DIR . 'includes/admin/settings/options/settings.php';
26 }
27 }
28
29 /**
30 * Add body class to admin pages.
31 *
32 * @param string $classes Body classes.
33 * @return string
34 */
35 public function body_class( $classes ) {
36 // if current page is ?page=bbp-core in admin.
37 if ( isset( $_GET['page'] ) && 'bbp-core' === $_GET['page'] ) {
38 $classes .= ' bbpc-forum-ui';
39 }
40 return $classes;
41 }
42 }
43