mirror of
https://github.com/typecho/typecho.git
synced 2025-03-19 01:19:40 +01:00
remove old file
This commit is contained in:
parent
e20e6804e9
commit
5163c43610
@ -1,58 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* 插件接口
|
||||
*
|
||||
* @category typecho
|
||||
* @package Plugin
|
||||
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
|
||||
* @license GNU General Public License 2.0
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
/**
|
||||
* 插件接口
|
||||
*
|
||||
* @package Plugin
|
||||
* @abstract
|
||||
*/
|
||||
interface Typecho_Plugin_Interface
|
||||
{
|
||||
/**
|
||||
* 启用插件方法,如果启用失败,直接抛出异常
|
||||
*
|
||||
* @static
|
||||
* @access public
|
||||
* @return void
|
||||
* @throws Typecho_Plugin_Exception
|
||||
*/
|
||||
public static function activate();
|
||||
|
||||
/**
|
||||
* 禁用插件方法,如果禁用失败,直接抛出异常
|
||||
*
|
||||
* @static
|
||||
* @access public
|
||||
* @return void
|
||||
* @throws Typecho_Plugin_Exception
|
||||
*/
|
||||
public static function deactivate();
|
||||
|
||||
/**
|
||||
* 获取插件配置面板
|
||||
*
|
||||
* @static
|
||||
* @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);
|
||||
}
|
@ -1,49 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Typecho\Widget\Helper;
|
||||
|
||||
/**
|
||||
* widget对象帮手,用于处理空对象方法
|
||||
*
|
||||
* @category typecho
|
||||
* @package Widget
|
||||
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
|
||||
* @license GNU General Public License 2.0
|
||||
*/
|
||||
class Faker
|
||||
{
|
||||
/**
|
||||
* 单例句柄
|
||||
*
|
||||
* @access private
|
||||
* @var Faker
|
||||
*/
|
||||
private static $instance = null;
|
||||
|
||||
/**
|
||||
* 获取单例句柄
|
||||
*
|
||||
* @access public
|
||||
* @return Faker
|
||||
*/
|
||||
public static function getInstance(): Faker
|
||||
{
|
||||
if (null === self::$instance) {
|
||||
self::$instance = new self();
|
||||
}
|
||||
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* 所有方法请求直接返回
|
||||
*
|
||||
* @access public
|
||||
* @param string $name 方法名
|
||||
* @param array $args 参数列表
|
||||
* @return void
|
||||
*/
|
||||
public function __call(string $name, array $args)
|
||||
{
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user