PluginProbe
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites / 3.1.4
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites v3.1.4
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 2.6.1 All 38 releases
blockspare / freemius.php

freemius.php in BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites 3.1.4, at freemius.php

36 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! function_exists( 'blockspare_fs' ) ) {
3 // Create a helper function for easy SDK access.
4 function blockspare_fs() {
5 global $blockspare_fs;
6
7 if ( ! isset( $blockspare_fs ) ) {
8 // Include Freemius SDK.
9 require_once dirname(__FILE__) . '/freemius/start.php';
10
11 $blockspare_fs = fs_dynamic_init( array(
12 'id' => '9379',
13 'slug' => 'blockspare',
14 'premium_slug' => 'blockspare-pro',
15 'type' => 'plugin',
16 'public_key' => 'pk_29829adcdce7852dbe329f64cd6f3',
17 'is_premium' => false,
18 'is_premium_only' => false,
19 'has_addons' => false,
20 'has_paid_plans' => true,
21 'menu' => array(
22 'slug' => 'blockspare',
23 'first-path' => 'admin.php?page=blockspare',
24 'support' => false,
25 ),
26 ) );
27 }
28
29 return $blockspare_fs;
30 }
31
32 // Init Freemius.
33 blockspare_fs();
34 // Signal that SDK was initiated.
35 do_action( 'blockspare_fs_loaded' );
36 }