wenpai.org/wp-content/plugins/plat-gp-generate-pack/plat-gp-generate-pack.php
2024-06-21 23:57:39 +08:00

24 lines
658 B
PHP

<?php
/**
* Plugin Name: GlotPress 翻译打包
* Description: 定时为 GlotPress 翻译率 80% 以上的插件执行打包逻辑。
* Version: 1.0
* Author: 树新蜂
* License: GPLv3
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
namespace Platform\Translate\GeneratePack;
const PLUGIN_FILE = __FILE__;
const PLUGIN_DIR = __DIR__;
// 加载插件
require_once( plugin_dir_path( __FILE__ ) . 'vendor/autoload.php' );
// 注册插件激活钩子
register_activation_hook( PLUGIN_FILE, [ Plugin::class, 'activate' ] );
// 注册插件删除钩子
register_uninstall_hook( PLUGIN_FILE, [ Plugin::class, 'uninstall' ] );
new Plugin();