PluginProbe
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs / 5.0.1
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs v5.0.1
5.0.1 4.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.1.2 2.5.0 2.5.3 All 39 releases
← All changes | blockspare.php +57 -52 2.1.2 → 5.0.1 View file →
@@ -1,60 +1,65 @@
1 1 <?php
2 - /*
3 - * Plugin Name: Blockspare
4 - * Plugin URI: https://blockspare.com
5 - * Description: A stunning set of Gutenberg blocks to get you started with the new WordPress editor. You may design complicated layouts for your website in just a few minutes with our adaptable and inventive blocks.
6 - * Version: 2.1.2
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_BASE_DIR') or define('BLOCKSPARE_BASE_DIR', dirname(BLOCKSPARE_BASE_FILE));
21 - defined('BLOCKSPARE_PLUGIN_URL') or define('BLOCKSPARE_PLUGIN_URL', plugin_dir_url(__FILE__));
22 - defined('BLOCKSPARE_PLUGIN_DIR') or define('BLOCKSPARE_PLUGIN_DIR', plugin_dir_path(__FILE__));
23 2
24 - defined( 'BLOCKSPARE_SHOW_PRO_NOTICES' ) || define( 'BLOCKSPARE_SHOW_PRO_NOTICES', true );
25 - defined( 'BLOCKSPARE_VERSION' ) || define( 'BLOCKSPARE_VERSION', '2.1.2' );
3 +/**
4 + * Plugin Name: BlockSpare
5 + * Plugin URI: https://blockspare.com/
6 + * Description: Build news, magazine, blog, editorial and business websites with powerful Gutenberg blocks, AI tools, Site Builder, starter sites, post layouts and more.
7 + * Version: 5.0.1
8 + * Author: BlockSpare
9 + * Author URI: https://blockspare.com/
10 + * Text Domain: blockspare
11 + * License: GPL-2.0+
12 + * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13 + */
26 14
15 +defined('ABSPATH') or die('No script kiddies please!'); // prevent direct access
27 16
28 - if ( ! version_compare( PHP_VERSION, '5.6', '>=' ) ) {
29 - add_action( 'admin_notices', 'aft_fail_php_version' );
30 - } elseif ( ! version_compare( get_bloginfo( 'version' ), '4.7', '>=' ) ) {
31 - add_action( 'admin_notices', 'aftfail_wp_version' );
32 - } else {
33 - /**
34 - * Freemius.
35 - */
36 - require_once(BLOCKSPARE_PLUGIN_DIR.'/freemius.php');
17 +/**
18 + * Define global constants
19 + **/
20 +defined('BLOCKSPARE_BASE_FILE') or define('BLOCKSPARE_BASE_FILE', __FILE__);
21 +defined('BLOCKSPARE_PLUGIN_BASE') or define('BLOCKSPARE_PLUGIN_BASE', plugin_basename(BLOCKSPARE_BASE_FILE));
22 +defined('BLOCKSPARE_BASE_DIR') or define('BLOCKSPARE_BASE_DIR', dirname(BLOCKSPARE_BASE_FILE));
23 +defined('BLOCKSPARE_PLUGIN_URL') or define('BLOCKSPARE_PLUGIN_URL', plugin_dir_url(__FILE__));
24 +defined('BLOCKSPARE_PLUGIN_DIR') or define('BLOCKSPARE_PLUGIN_DIR', plugin_dir_path(__FILE__));
25 +defined('BLOCKSPARE_PRO_PATH') || define('BLOCKSPARE_PRO_PATH', 'https://www.blockspare.com/');
26 +defined('BLOCKSPARE_SHOW_PRO_NOTICES') || define('BLOCKSPARE_SHOW_PRO_NOTICES', true);
27 +defined('BLOCKSPARE_VERSION') || define('BLOCKSPARE_VERSION', '5.0.0');
37 28
38 - /**
39 - * Plugin init and welcome.
40 - */
41 -
42 - include_once BLOCKSPARE_PLUGIN_DIR. 'inc/init.php';
43 - include_once BLOCKSPARE_PLUGIN_DIR.'inc/welcome.php';
44 - include_once BLOCKSPARE_PLUGIN_DIR.'inc/fonts.php';
45 - }
46 29
30 +if (!version_compare(PHP_VERSION, '5.6', '>=')) {
31 + add_action('admin_notices', 'blockspare_fail_php_free_version');
32 +} elseif (!version_compare(get_bloginfo('version'), '4.7', '>=')) {
33 + add_action('admin_notices', 'blockspare_fail_wp_free_version');
34 +} else {
35 + /**
36 + * Freemius.
37 + */
38 + require_once(BLOCKSPARE_PLUGIN_DIR . '/freemius.php');
47 39
48 - function aft_fail_php_version() {
49 - /* translators: %s: PHP version */
50 - $message = sprintf( esc_html__( 'Blockspare for Gutenberg requires PHP version %s+, plugin is currently NOT RUNNING.', 'blockspare' ), '5.6' );
51 - $html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) );
52 - echo wp_kses_post( $html_message );
53 - }
40 + /**
41 + * Plugin init and welcome.
42 + */
54 43
55 - function aft_fail_wp_version() {
56 - /* translators: %s: WordPress version */
57 - $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' );
58 - $html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) );
59 - echo wp_kses_post( $html_message );
60 - }
44 + include_once BLOCKSPARE_PLUGIN_DIR . 'inc/init.php';
45 + include_once BLOCKSPARE_PLUGIN_DIR . 'inc/welcome.php';
46 + include_once BLOCKSPARE_PLUGIN_DIR . 'inc/fonts.php';
47 + include_once BLOCKSPARE_PLUGIN_DIR . 'inc/theme-builder/theme-builder-loader.php';
48 + include_once BLOCKSPARE_PLUGIN_DIR . 'inc/ai/class-ai.php';
49 +}
50 +
51 +function blockspare_fail_php_free_version()
52 +{
53 + /* translators: %s: PHP version */
54 + $message = sprintf(esc_html__('BlockSpare for Gutenberg requires PHP version %s+, plugin is currently NOT RUNNING.', 'blockspare'), '5.6');
55 + $html_message = sprintf('<div class="error">%s</div>', wpautop($message));
56 + echo wp_kses_post($html_message);
57 +}
58 +
59 +function blockspare_fail_wp_free_version()
60 +{
61 + /* translators: %s: WordPress version */
62 + $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');
63 + $html_message = sprintf('<div class="error">%s</div>', wpautop($message));
64 + echo wp_kses_post($html_message);
65 +}