PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 1.0.8
Forumax – AI Powered Advanced Community Forum Plugin v1.0.8
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.0.8, at includes/Admin.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 class Admin {
3 /**
4 * Admin class construct
5 */
6 public function __construct() {
7 if ( ! class_exists( 'bbPress' ) ) {
8 add_action( 'admin_notices', [ $this, 'admin_notices' ] );
9 }
10
11 new admin\Menu();
12 $this->load_csf();
13 }
14
15 /**
16 * Load Codestar Framework and related settings.
17 *
18 * @return void
19 */
20 public function load_csf() {
21 require BBPC_DIR . 'includes/admin/settings/codestar-framework/codestar-framework.php';
22 if ( ! class_exists( 'BBPCorePro' ) ) {
23 require BBPC_DIR . 'includes/admin/settings/options/settings.php';
24 }
25 }
26
27 /**
28 * Show admin notices when needed.
29 */
30 public function admin_notices() {
31 $message = sprintf(
32 /* translators: 1: BBP Core 2: bbPress */
33 esc_html__( '"%1$s" requires "%2$s" to be installed and activated.', 'bbp-core' ),
34 '<strong>' . esc_html__( 'BBP Core Plugin', 'bbp-core' ) . '</strong>',
35 '<strong>' . esc_html__( 'bbPress', 'bbp-core' ) . '</strong>'
36 );
37
38 printf( '<div class="notice notice-error is-dismissible"><p>%1$s</p></div>', $message );
39 }
40 }
41