| 1 |
<?php |
| 2 |
/* |
| 3 |
* Plugin Name: Blockspare |
| 4 |
* Plugin URI: https://blockspare.com/ |
| 5 |
* Description: Effortless Site Creation in Minutes: Expert Templates and Blocks for Your Blog, News, Magazine, and Agency Websites! Explore our Design Library, Page-Builder Features, and enjoy Just Importing, Customizing, and Publishing Your Site with Ease! |
| 6 |
* Version: 3.1.4 |
| 7 |
* Author: Blockspare |
| 8 |
* Author URI: https://blockspare.com/ |
| 9 |
* Text Domain: blockspare |
| 10 |
* License: GPL-2.0+ |
| 11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
| 12 |
*/ |
| 13 |
|
| 14 |
defined('ABSPATH') or die('No script kiddies please!'); // prevent direct access |
| 15 |
|
| 16 |
/** |
| 17 |
* Define global constants |
| 18 |
**/ |
| 19 |
defined('BLOCKSPARE_BASE_FILE') or define('BLOCKSPARE_BASE_FILE', __FILE__); |
| 20 |
defined('BLOCKSPARE_PLUGIN_BASE') or define('BLOCKSPARE_PLUGIN_BASE', plugin_basename( BLOCKSPARE_BASE_FILE ) ); |
| 21 |
defined('BLOCKSPARE_BASE_DIR') or define('BLOCKSPARE_BASE_DIR', dirname(BLOCKSPARE_BASE_FILE)); |
| 22 |
defined('BLOCKSPARE_PLUGIN_URL') or define('BLOCKSPARE_PLUGIN_URL', plugin_dir_url(__FILE__)); |
| 23 |
defined('BLOCKSPARE_PLUGIN_DIR') or define('BLOCKSPARE_PLUGIN_DIR', plugin_dir_path(__FILE__)); |
| 24 |
defined('BLOCKSPARE_PRO_PATH') || define('BLOCKSPARE_PRO_PATH','https://www.blockspare.com/'); |
| 25 |
defined('BLOCKSPARE_SHOW_PRO_NOTICES' ) || define('BLOCKSPARE_SHOW_PRO_NOTICES', true ); |
| 26 |
defined('BLOCKSPARE_VERSION' ) || define('BLOCKSPARE_VERSION', '3.1.4'); |
| 27 |
|
| 28 |
|
| 29 |
if ( ! version_compare( PHP_VERSION, '5.6', '>=' ) ) { |
| 30 |
add_action( 'admin_notices', 'blockspare_fail_php_version' ); |
| 31 |
} elseif ( ! version_compare( get_bloginfo( 'version' ), '4.7', '>=' ) ) { |
| 32 |
add_action( 'admin_notices', 'blockspare_fail_wp_version' ); |
| 33 |
} else { |
| 34 |
/** |
| 35 |
* Freemius. |
| 36 |
*/ |
| 37 |
require_once(BLOCKSPARE_PLUGIN_DIR.'/freemius.php'); |
| 38 |
|
| 39 |
/** |
| 40 |
* Plugin init and welcome. |
| 41 |
*/ |
| 42 |
|
| 43 |
include_once BLOCKSPARE_PLUGIN_DIR. 'inc/init.php'; |
| 44 |
include_once BLOCKSPARE_PLUGIN_DIR.'inc/welcome.php'; |
| 45 |
include_once BLOCKSPARE_PLUGIN_DIR.'inc/fonts.php'; |
| 46 |
} |
| 47 |
|
| 48 |
|
| 49 |
function blockspare_fail_php_version() { |
| 50 |
/* translators: %s: PHP version */ |
| 51 |
$message = sprintf( esc_html__( 'Blockspare for Gutenberg requires PHP version %s+, plugin is currently NOT RUNNING.', 'blockspare' ), '5.6' ); |
| 52 |
$html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) ); |
| 53 |
echo wp_kses_post( $html_message ); |
| 54 |
} |
| 55 |
|
| 56 |
function blockspare_fail_wp_version() { |
| 57 |
/* translators: %s: WordPress version */ |
| 58 |
$message = sprintf( esc_html__( 'Blockspare for Gutenberg requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.', 'blockspare' ), '4.7' ); |
| 59 |
$html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) ); |
| 60 |
echo wp_kses_post( $html_message ); |
| 61 |
} |