PluginProbe
Gutenverse – WordPress Blocks, Page Builder & Site Editor / trunk
Gutenverse – WordPress Blocks, Page Builder & Site Editor vtrunk
4.0.7 4.0.6 4.0.5 4.0.3 4.0.2 4.0.0 3.8.2 3.8.1 3.8.0 3.7.1 3.7.0 3.6.3 3.6.2 3.6.1 trunk 1.0.0 1.0.1 1.0.2 1.0.5 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 All 117 releases
gutenverse / gutenverse.php

gutenverse.php in Gutenverse – WordPress Blocks, Page Builder & Site Editor trunk, at gutenverse.php

38 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Gutenverse
4 * Description: Collection of easy to use and customizable blocks for WordPress Block Editor. Build a great website using block provided with Gutenverse.
5 * Plugin URI: https://gutenverse.com/
6 * Author: Jegstudio
7 * Version: 4.0.7
8 * Author URI: https://jegtheme.com/
9 * License: GPLv3
10 * Text Domain: gutenverse
11 *
12 * @package gutenverse
13 */
14
15 use Gutenverse\Gutenverse;
16
17 defined( 'GUTENVERSE' ) || define( 'GUTENVERSE', 'gutenverse' );
18 defined( 'GUTENVERSE_VERSION' ) || define( 'GUTENVERSE_VERSION', '4.0.7' );
19 defined( 'GUTENVERSE_NOTICE_VERSION' ) || define( 'GUTENVERSE_NOTICE_VERSION', '4.0.0' );
20 defined( 'GUTENVERSE_NAME' ) || define( 'GUTENVERSE_NAME', 'Gutenverse' );
21 defined( 'GUTENVERSE_URL' ) || define( 'GUTENVERSE_URL', plugins_url( GUTENVERSE ) );
22 defined( 'GUTENVERSE_PLUGIN_URL' ) || define( 'GUTENVERSE_PLUGIN_URL', plugins_url( GUTENVERSE ) );
23 defined( 'GUTENVERSE_FILE' ) || define( 'GUTENVERSE_FILE', __FILE__ );
24 defined( 'GUTENVERSE_DIR' ) || define( 'GUTENVERSE_DIR', plugin_dir_path( __FILE__ ) );
25 defined( 'GUTENVERSE_CLASS_DIR' ) || define( 'GUTENVERSE_CLASS_DIR', GUTENVERSE_DIR . 'includes/' );
26 defined( 'GUTENVERSE_LANG_DIR' ) || define( 'GUTENVERSE_LANG_DIR', GUTENVERSE_DIR . 'languages' );
27 defined( 'GUTENVERSE_PATH' ) || define( 'GUTENVERSE_PATH', plugin_basename( __FILE__ ) );
28
29 // This constant has been deprecated as of Gutenverse Core v1.0.6 and Gutenverse v2.0.5.
30 // Use GUTENVERSE_FRAMEWORK_URL_PATH instead.
31 defined( 'GUTENVERSE_FRAMEWORK_URL' ) || define( 'GUTENVERSE_FRAMEWORK_URL', plugins_url( GUTENVERSE ) . '/lib/framework' );
32
33 // Required Pro Version.
34 defined( 'GUTENVERSE_REQUIRED_PRO_VERSION' ) || define( 'GUTENVERSE_REQUIRED_PRO_VERSION', '2.0.0' );
35
36 require_once GUTENVERSE_DIR . 'lib/autoload.php';
37 Gutenverse::instance();
38