Initial commit
Some checks failed
定时更新GitHub源插件 / 自动更新GitHub插件 (push) Has been cancelled

This commit is contained in:
chorblack
2026-03-07 11:19:25 +08:00
commit e75f275ef4
4484 changed files with 645480 additions and 0 deletions

58
RoutesHelper/Plugin.php Normal file
View File

@@ -0,0 +1,58 @@
<?php
/**
* 路由助手
*
* @package RoutesHelper
* @author doudou
* @version 1.0.3
* @dependence 13.12.12-*
* @link https://github.com/doudoutime
* @date 2018-7-26
*/
class RoutesHelper_Plugin implements Typecho_Plugin_Interface
{
/**
* 激活插件方法,如果激活失败,直接抛出异常
*
* @access public
* @return void
* @throws Typecho_Plugin_Exception
*/
public static function activate()
{
Helper::addAction('RoutesHelper', 'RoutesHelper_Action');
Helper::addPanel(4, 'RoutesHelper/panel.php', _t('路由助手'), _t('路由助手'), 'administrator');
}
/**
* 禁用插件方法,如果禁用失败,直接抛出异常
*
* @static
* @access public
* @return void
* @throws Typecho_Plugin_Exception
*/
public static function deactivate()
{
Helper::removeAction('RoutesHelper');
Helper::removePanel(4, 'RoutesHelper/panel.php');
}
/**
* 获取插件配置面板
*
* @access public
* @param Typecho_Widget_Helper_Form $form 配置面板
* @return void
*/
public static function config(Typecho_Widget_Helper_Form $form){}
/**
* 个人用户的配置面板
*
* @access public
* @param Typecho_Widget_Helper_Form $form
* @return void
*/
public static function personalConfig(Typecho_Widget_Helper_Form $form){}
}