PluginProbe
Gutena Kit – Gutenberg Blocks and Templates / 2.0.2
Gutena Kit – Gutenberg Blocks and Templates v2.0.2
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
gutena-kit / gutena-kit.php

gutena-kit.php in Gutena Kit – Gutenberg Blocks and Templates 2.0.2, at gutena-kit.php

87 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Gutena Kit
4 *
5 * @package Gutena_Kit
6 * @author ExpressTech
7 * @copyright 2022 ExpressTech
8 * @license GPL-3.0
9 *
10 * Plugin Name: Gutena Kit - Gutenberg Blocks and Templates
11 * Plugin URI: https://Gutena.io
12 * Description: Gutena Kit gives you advanced controls, powerful blocks and beautiful pre-made templates that help you build websites in less time! These templates can be imported in just a few clicks.
13 * Version: 2.0.2
14 * Requires at least: 6.1
15 * Requires PHP: 5.6
16 * Author: ExpressTech
17 * Author URI: https://expresstech.io
18 * License: GPL v3
19 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
20 * Text Domain: gutena-kit
21 */
22
23 // If this file is called directly, abort.
24 if ( ! defined( 'WPINC' ) ) {
25 die;
26 }
27
28 /**
29 * Plugin version.
30 */
31 if ( ! defined( 'GUTENA_KIT_VERSION' ) ) {
32 define( 'GUTENA_KIT_VERSION', '2.0.2' );
33 }
34
35 /**
36 * Plugin dir path
37 */
38 if ( ! defined( 'GUTENA_KIT_DIR_PATH' ) ) {
39 define( 'GUTENA_KIT_DIR_PATH', trailingslashit(plugin_dir_path( __FILE__ ) ) );
40 }
41
42 /**
43 * Plugin url
44 */
45 if ( ! defined( 'GUTENA_KIT_PLUGIN_URL' ) ) {
46 define( 'GUTENA_KIT_PLUGIN_URL', trailingslashit(plugins_url( '', __FILE__ ) ) );
47 }
48
49 if ( ! defined( 'GUTENA_KIT_MIN_FILE' ) ) {
50 define( 'GUTENA_KIT_MIN_FILE', ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min');
51 }
52
53 /**
54 * The code that runs during plugin activation.
55 * This action is documented in includes/class-gutena-kit-activator.php
56 */
57 function activate_gutena_kit() {
58 require_once GUTENA_KIT_DIR_PATH . 'includes/class-gutena-kit-activator.php';
59 Gutena_Kit_Activator::activate();
60 }
61
62 /**
63 * The code that runs during plugin deactivation.
64 * This action is documented in includes/class-gutena-kit-deactivator.php
65 */
66 function deactivate_gutena_kit() {
67 require_once GUTENA_KIT_DIR_PATH . 'includes/class-gutena-kit-deactivator.php';
68 Gutena_Kit_Deactivator::deactivate();
69 }
70
71 register_activation_hook( __FILE__, 'activate_gutena_kit' );
72 register_deactivation_hook( __FILE__, 'deactivate_gutena_kit' );
73
74 /**
75 * The core plugin class that is used to define internationalization,
76 * admin-specific hooks, and public-facing site hooks.
77 */
78 require GUTENA_KIT_DIR_PATH . 'includes/class-gutena-kit.php';
79
80 /**
81 * Begins execution of the plugin.
82 */
83 function run_gutena_kit() {
84 $plugin = new Gutena_Kit();
85 $plugin->run();
86 }
87 run_gutena_kit();