Files
plugins/DbManager/Plugin.php
chorblack e75f275ef4
Some checks failed
定时更新GitHub源插件 / 自动更新GitHub插件 (push) Has been cancelled
Initial commit
2026-03-07 11:19:25 +08:00

66 lines
1.8 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* 数据备份
*
* @package DbManager
* @author ShingChi
* @version 2.0.1
* @link http://lcz.me
*/
class DbManager_Plugin implements Typecho_Plugin_Interface
{
/**
* 激活插件方法,如果激活失败,直接抛出异常
*
* @access public
* @return void
* @throws Typecho_Plugin_Exception
*/
public static function activate()
{
Helper::addAction('dbmanager', 'DbManager_Action');
Helper::addPanel(1, 'DbManager/panel.php', _t('数据备份'), _t('数据备份'), 'administrator');
return _t('插件已经激活,请设置插件以正常使用!');
}
/**
* 禁用插件方法,如果禁用失败,直接抛出异常
*
* @static
* @access public
* @return void
* @throws Typecho_Plugin_Exception
*/
public static function deactivate()
{
Helper::removeAction('dbmanager');
Helper::removePanel(1, 'DbManager/panel.php');
}
/**
* 获取插件配置面板
*
* @access public
* @param Typecho_Widget_Helper_Form $form 配置面板
* @return void
*/
public static function config(Typecho_Widget_Helper_Form $form){
$path = new Typecho_Widget_Helper_Form_Element_Text(
'path', NULL, '/usr/plugins/DbManager/backup',
_t('备份文件夹'),
_t('备份文件夹默认在插件目录下的 backup路径规则请以 Typecho 根目录为准,如:/usr/backup<br>请正确设置目录权限,以便正常插件正常运行')
);
$form->addInput($path->addRule('required', _t('备份文件夹不能为空')));
}
/**
* 个人用户的配置面板
*
* @access public
* @param Typecho_Widget_Helper_Form $form
* @return void
*/
public static function personalConfig(Typecho_Widget_Helper_Form $form){}
}