You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
415 B

<?php
/**
* 可以被Widget_Do调用的接口
*
* @package Widget
* @version $id$
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
* @author qining <magike.net@gmail.com>
* @license GNU General Public License 2.0
*/
interface Widget_Interface_Do
{
/**
* 接口需要实现的入口函数
*
* @access public
* @return void
*/
public function action();
}