mirror of
https://github.com/CaptainCore/Helm.git
synced 2026-02-28 08:47:38 +08:00
25 lines
No EOL
625 B
PHP
25 lines
No EOL
625 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: CaptainCore Helm
|
|
* Description: Take the helm of your WordPress admin.
|
|
* Version: 1.0.1
|
|
* Author: CaptainCore
|
|
* Author URI: https://captaincore.io
|
|
* License: MIT License
|
|
* License URI: https://opensource.org/licenses/MIT
|
|
* Text Domain: captaincore-helm
|
|
*/
|
|
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
|
|
define('CCHELM_VER', '1.0.1');
|
|
define('CCHELM_FILE', __FILE__);
|
|
define('CCHELM_DIR', plugin_dir_path(__FILE__));
|
|
define('CCHELM_URL', plugin_dir_url(__FILE__));
|
|
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
|
|
|
CaptainCoreHelm\Plugin::boot();
|
|
CaptainCoreHelm\Updater::boot(); |