load_csf(); } /** * Load Codestar Framework and related settings. * * @return void */ public function load_csf() { require BBPC_DIR . 'includes/admin/settings/codestar-framework/codestar-framework.php'; if ( ! class_exists( 'BBPCorePro' ) ) { require BBPC_DIR . 'includes/admin/settings/options/settings.php'; } } /** * Show admin notices when needed. */ public function admin_notices() { $message = sprintf( /* translators: 1: BBP Core 2: bbPress */ esc_html__( '"%1$s" requires "%2$s" to be installed and activated.', 'bbp-core' ), '' . esc_html__( 'BBP Core Plugin', 'bbp-core' ) . '', '' . esc_html__( 'bbPress', 'bbp-core' ) . '' ); printf( '

%1$s

', $message ); } }