PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.2.0
Forumax – AI Powered Advanced Community Forum Plugin v2.2.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 2.2.0, at includes/Admin.php

43 lines 889 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 add_filter( 'admin_body_class', [ $this, 'body_class' ] );
8 new admin\Menu();
9
10 // Load Demo Importer.
11 require_once FORUMAX_PATH . 'includes/admin/Demo_Importer.php';
12 }
13
14 /**
15 * Add body class to admin pages.
16 *
17 * @param string $classes Body classes.
18 * @return string
19 */
20 public function body_class( $classes ) {
21 // if current page is ?page=forumax in admin.
22 if ( isset( $_GET['page'] ) && 'forumax' === $_GET['page'] ) {
23 $classes .= ' bbpc-forum-ui';
24 }
25
26 // if has no pro plan.
27 if ( forumax_is_premium() !== true ) {
28 $classes .= ' bbpc-no-pro';
29 }
30
31 // if has no promax plan.
32 if ( forumax_is_promax() !== true ) {
33 $classes .= ' bbpc-no-promax';
34 }
35
36 if ( class_exists( 'BBPC_GEO_ROLES' ) ) {
37 $classes .= ' bbpc-geo-roles';
38 }
39
40 return $classes;
41 }
42 }
43