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