set_entity( array( 'bsf' => array( 'product_name' => 'Schema Pro', 'path' => BSF_AIOSRS_PRO_DIR . 'admin/bsf-analytics', 'author' => 'Brainstorm Force', 'time_to_display' => '+24 hours', ), ) ); /** * Brainstorm Updater. */ require_once BSF_AIOSRS_PRO_DIR . 'classes/class-brainstorm-update-aiosrs-pro.php'; require_once BSF_AIOSRS_PRO_DIR . 'wpsp-blocks/classes/class-bsf-sp-loader.php'; require_once BSF_AIOSRS_PRO_DIR . 'wpsp-blocks/classes/class-bsf-sp-admin.php'; /** * Schema Pro for Gutenberg admin notice for minimum PHP version. * * Warning when the site doesn't have the minimum required PHP version. * * @since 2.1.1 * * @return void */ function wpsp_fail_php_version() { /* translators: %s: PHP version */ $message = sprintf( esc_html__( 'Schema Pro blocks requires PHP version %s+, plugin is currently NOT RUNNING.', 'wp-schema-pro' ), '5.6' ); $html_message = sprintf( '
%s
', wpautop( $message ) ); echo wp_kses_post( $html_message ); } /** * Schema Pro for Gutenberg admin notice for minimum WordPress version. * * Warning when the site doesn't have the minimum required WordPress version. * * @since 1.8.1 * * @return void */ function wpsp_fail_wp_version() { /* translators: %s: WordPress version */ $message = sprintf( esc_html__( 'Schema Pro blocks requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.', 'wp-schema-pro' ), '4.7' ); $html_message = sprintf( '
%s
', wpautop( $message ) ); echo wp_kses_post( $html_message ); }