1
0
Fork 0
mirror of https://github.com/yunluo/gdk.git synced 2024-06-02 13:52:18 +02:00
gdk/gdk_route.php
2020-01-28 02:08:46 +08:00

33 lines
977 B
PHP

<?php
/*
Plugin Name: GitCafe Development Kit 极客公园开发套件
Plugin URI: https://www.nicetheme.cn/nicetheme-plugins-store.html
Description: 为WordPress主题开发提供底层支持
Version: 0.3.5
Author URI: http://www.nicetheme.cn
Text Domain: jimu
Compatible:
*/
if ( ! defined( 'ABSPATH' ) ) { exit; }
function deactivate_myself() {
deactivate_plugins( plugin_basename( __FILE__ ) );
wp_die('启动失败,积木插件需要运行在 PHP 7.2 版本及更高的环境下。');
}
if (!version_compare(PHP_VERSION, '7.2', '>=')) {
add_action('update_option_active_plugins', 'deactivate_myself');
}
define('NC_STORE_VER', '0.3.5');
define('NC_STORE_FILE', __FILE__);//插件入口文件
define('NC_BASE_URL', plugin_dir_url( __FILE__ ) );//插件目录url
define('NC_STORE_ROOT_PATH', plugin_dir_path( __FILE__ ) );//插件目录路径
include('class/clean-up.php');
include('framework/plugin-options.php');
include('functions/func_load.php');