-
Notifications
You must be signed in to change notification settings - Fork 28
/
aquila-features.php
36 lines (32 loc) · 1010 Bytes
/
aquila-features.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* Aquila Features Plugin
*
* @package aquila-features
* @author Imran Sayed
*
* @wordpress-plugin
* Plugin Name: Aquila Features
* Plugin URI: https://codeytek.com/aquila-features/
* Description: Adds Gutenberg Blocks.
* Version: 1.0.1
* Requires at least: 5.2
* Requires PHP: 7.2
* Author: Imran Sayed
* Author URI: https://codeytek.com/about/
* License: GPL v2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: aquila-features
* Domain Path: /languages
*/
/**
* Bootstrap the plugin.
*/
require_once 'vendor/autoload.php';
require_once untrailingslashit( plugin_dir_path( __FILE__ ) ) . '/inc/custom-functions.php';
use AquilaFeatures\Plugin;
if ( class_exists( 'AquilaFeatures\Plugin' ) ) {
$the_plugin = new Plugin();
}
register_activation_hook( __FILE__, [ $the_plugin, 'activate' ] );
register_deactivation_hook( __FILE__, [ $the_plugin, 'deactivate' ] );