-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcss-class-manager.php
33 lines (27 loc) · 966 Bytes
/
css-class-manager.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
<?php
/**
* Plugin Name: CSS Class Manager
* Plugin URI: https://github.com/ediamin/css-class-manager
* Description: An advanced autocomplete additional css class control for your blocks.
* Version: 1.1.0
* Requires at least: 6.6
* Requires PHP: 7.4
* Author: Edi Amin
* Author URI: https://github.com/ediamin
* License: GPL-3.0
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: css-class-manager
* Domain Path: /languages/
*
* @package ediamin/css-class-manager
*/
declare(strict_types = 1);
use CSSClassManager\Bootstrap;
// Do not call the file directly.
defined( 'ABSPATH' ) || exit;
class_exists( 'CSSClassManager\Bootstrap' ) || require_once __DIR__ . '/vendor/autoload.php';
define( 'CSS_CLASS_MANAGER_FILE', __FILE__ );
define( 'CSS_CLASS_MANAGER_ABSPATH', dirname( CSS_CLASS_MANAGER_FILE ) );
define( 'CSS_CLASS_MANAGER_URL', plugins_url( '', CSS_CLASS_MANAGER_FILE ) );
// Initialize the plugin.
new Bootstrap();