| 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 |
|