PluginProbe
Frontis Blocks — Block Library for the Block Editor / 1.2.3
Frontis Blocks — Block Library for the Block Editor v1.2.3
1.2.4 1.2.3 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.1.9-beta1 1.1.9-beta2 1.1.9-beta3 1.2.0 1.2.1 All 29 releases
frontis-blocks / frontis-blocks.php

frontis-blocks.php in Frontis Blocks — Block Library for the Block Editor 1.2.3, at frontis-blocks.php

40 lines 957 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Plugin Name: Frontis Blocks — Block Library for the Block Editor
5 * Plugin URI: https://wpmessiah.com/products/frontis-blocks/
6 * Description: A blocks library for the Gutenberg editor.
7 * Version: 1.2.3
8 * Author: WPmessiah
9 * Author URI: https://wpmessiah.com/
10 * License: GPL-2.0+
11 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
12 * Text Domain: frontis-blocks
13 * Domain Path: /languages
14 */
15
16 if (!defined('ABSPATH')) {
17 exit;
18 }
19
20 // Define things
21 define('FB_PLUGIN_FILE', __FILE__);
22 define('PORTAL_API', 'https://template-library.frontiswp.com');
23 define('WORDPRESS_SYNC_API', 'https://sync.frontiswp.com');
24
25 /**
26 * Autoloader
27 */
28 require_once __DIR__ . '/vendor/autoload.php';
29
30 /**
31 * Initialize plugin
32 */
33 function frontis_blocks()
34 {
35 FrontisBlocks\Activator\Activator::get_instance();
36 FrontisBlocks\Plugin::get_instance();
37 }
38
39 frontis_blocks();
40