Typecho
Home
Docs
Community
Blog
Download
您在这里:
Typecho文档站点
»
插件开发
»
插件接口及功能列表
本页面只读。您可以查看源文件,但不能更改它。如果您觉得这是系统错误,请联系管理员。
====== 插件接口及功能列表 ====== ===== Widget内置的接口 ===== 在Typecho中只要这个类是继承自Typecho_Widget基类,它就默认具备了这个插件接口。接口开发者可以使用这个接口无缝地向当前的Class中注入方法 比如我要给Widget_Archive类增加一个方法获取当前文章的字数(charactersNum),只需要在你的插件`activate`方法中声明 <code php> Typecho_Plugin::factory('Widget_Archive')->___charactersNum = array('MyPlugin', 'charactersNum'); </code> 注意,我们在方法名前面加三个下划线表示这是一个内部方法。而实现这个方法也很简单,因为系统会将当前的对象作为参数传递给你 <code php> public static function charactersNum($archive) { return mb_strlen($archive->text, 'UTF-8'); } </code> 那么这个方法就已经植入到Widget_Archive中去了,你在模版中可以直接调用如下代码输出它 <code php> <?php $this->charactersNum(); ?> </code> ===== 句柄接口 ===== ==== Widget_Archive ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>indexHandle</code></td> <td><code>Widget_Archive</code>对象<br /> <code>$select</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>error404Handle</code></td> <td><code>Widget_Archive</code>对象<br /> <code>$select</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>singleHandle</code></td> <td><code>Widget_Archive</code>对象<br /> <code>$select</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>categoryHandle</code></td> <td><code>Widget_Archive</code>对象<br /> <code>$select</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>tagHandle</code></td> <td><code>Widget_Archive</code>对象<br /> <code>$select</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>authorHandle</code></td> <td><code>Widget_Archive</code>对象<br /> <code>$select</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>dateHandle</code></td> <td><code>Widget_Archive</code>对象<br /> <code>$select</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>search</code></td> <td><code>$keywords</code><br /> <code>Widget_Archive</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>searchHandle</code></td> <td><code>Widget_Archive</code>对象<br /> <code>$select</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>query</code></td> <td><code>Widget_Archive</code>对象<br /> <code>$select</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>select</code></td> <td><code>Widget_Archive</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>handleInit</code></td> <td><code>Widget_Archive</code>对象<br /> <code>$select</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>handle</code></td> <td><code>$parameter->type</code><br /> <code>Widget_Archive</code>对象<br /> <code>$select</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>pageNav</code></td> <td><code>$currentPage</code><br /> <code>$total</code><br /> <code>$parameter->pageSize</code><br /> <code>$prev</code><br /> <code>$next</code><br /> <code>$splitPage</code><br /> <code>$splitWord</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>headerOptions</code></td> <td><code>$allows</code><br /> <code>Widget_Archive</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>header</code></td> <td><code>$header</code><br /> <code>Widget_Archive</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>footer</code></td> <td><code>Widget_Archive</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>beforeRender</code></td> <td><code>Widget_Archive</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>afterRender</code></td> <td><code>Widget_Archive</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>commentFeedItem</code></td> <td><code>$feedType</code><br /> <code>$comments</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>feedItem</code></td> <td><code>$feedType</code><br /> <code>Widget_Archive</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_Feedback ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>comment</code></td> <td><code>$comment</code><br /> <code>$content</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishComment</code></td> <td><code>Widget_Feedback</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>trackback</code></td> <td><code>$trackback</code><br /> <code>$content</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishTrackback</code></td> <td><code>Widget_Feedback</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_Login ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>loginFail</code></td> <td><code>$user</code><br /> <code>$request->name</code><br /> <code>$request->password</code><br /> <code>1 == $request->remember</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>loginSucceed</code></td> <td><code>$user</code><br /> <code>$request->name</code><br /> <code>$request->password</code><br /> <code>1 == $request->remember</code></td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_Logout ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>logout</code></td> <td><cite>无</cite> </td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_Register ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>register</code></td> <td><code>$dataStruct</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishRegister</code></td> <td><code>Widget_Register</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_Upload ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>beforeUpload</code></td> <td><code>$result</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>upload</code></td> <td><code>Widget_Upload</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>beforeModify</code></td> <td><code>$result</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>modify</code></td> <td><code>Widget_Upload</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_User ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>login</code></td> <td><code>$name</code><br /> <code>$password</code><br /> <code>$temporarily</code><br /> <code>$expire</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>hashValidate</code></td> <td><code>$password</code><br /> <code>$user['password']</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>loginSucceed</code></td> <td><code>Widget_User</code>对象<br /> <code>$name</code><br /> <code>$password</code><br /> <code>$temporarily</code><br /> <code>$expire</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>loginFail</code></td> <td><code>Widget_User</code>对象<br /> <code>$name</code><br /> <code>$password</code><br /> <code>$temporarily</code><br /> <code>$expire</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>logout</code></td> <td><cite>无</cite> </td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_XmlRpc ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>textFilter</code></td> <td><code>$input['text']</code><br /> <code>Widget_XmlRpc</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>upload</code></td> <td><code>Widget_XmlRpc</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>pingback</code></td> <td><code>$pingback</code><br /> <code>$post</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishPingback</code></td> <td><code>Widget_XmlRpc</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_Abstract_Comments ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>content</code></td> <td><code>$text</code><br /> <code>Widget_Abstract_Comments</code>对象</td> <td></td> <td><code>Widget_Feedback</code><br /> <code>Widget_Comments_Admin</code><br /> <code>Widget_Comments_Archive</code><br /> <code>Widget_Comments_Edit</code><br /> <code>Widget_Comments_Ping</code><br /> <code>Widget_Comments_Recent</code></td> </tr> <tr> <td><code>contentEx</code></td> <td><code>$text</code><br /> <code>Widget_Abstract_Comments</code>对象</td> <td></td> <td><code>Widget_Feedback</code><br /> <code>Widget_Comments_Admin</code><br /> <code>Widget_Comments_Archive</code><br /> <code>Widget_Comments_Edit</code><br /> <code>Widget_Comments_Ping</code><br /> <code>Widget_Comments_Recent</code></td> </tr> <tr> <td><code>filter</code></td> <td><code>$value</code><br /> <code>Widget_Abstract_Comments</code>对象</td> <td></td> <td><code>Widget_Feedback</code><br /> <code>Widget_Comments_Admin</code><br /> <code>Widget_Comments_Archive</code><br /> <code>Widget_Comments_Edit</code><br /> <code>Widget_Comments_Ping</code><br /> <code>Widget_Comments_Recent</code></td> </tr> <tr> <td><code>gravatar</code></td> <td><code>$size</code><br /> <code>$rating</code><br /> <code>$default</code><br /> <code>Widget_Abstract_Comments</code>对象</td> <td></td> <td><code>Widget_Feedback</code><br /> <code>Widget_Comments_Admin</code><br /> <code>Widget_Comments_Archive</code><br /> <code>Widget_Comments_Edit</code><br /> <code>Widget_Comments_Ping</code><br /> <code>Widget_Comments_Recent</code></td> </tr> <tr> <td><code>autoP</code></td> <td><code>$text</code></td> <td></td> <td><code>Widget_Feedback</code><br /> <code>Widget_Comments_Admin</code><br /> <code>Widget_Comments_Archive</code><br /> <code>Widget_Comments_Edit</code><br /> <code>Widget_Comments_Ping</code><br /> <code>Widget_Comments_Recent</code></td> </tr> <tr> <td><code>markdown</code></td> <td><code>$text</code></td> <td></td> <td><code>Widget_Feedback</code><br /> <code>Widget_Comments_Admin</code><br /> <code>Widget_Comments_Archive</code><br /> <code>Widget_Comments_Edit</code><br /> <code>Widget_Comments_Ping</code><br /> <code>Widget_Comments_Recent</code></td> </tr> </tbody> </table> </html> ==== Widget_Abstract_Contents ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>excerpt</code></td> <td><code>$text</code><br /> <code>Widget_Abstract_Contents</code>对象</td> <td></td> <td><code>Widget_Archive</code><br /> <code>Widget_Upload</code><br /> <code>Widget_XmlRpc</code><br /> <code>Widget_Contents_Related</code><br /> <code>Widget_Contents_Attachment_Admin</code><br /> <code>Widget_Contents_Attachment_Related</code><br /> <code>Widget_Contents_Attachment_Unattached</code><br /> <code>Widget_Contents_Page_List</code><br /> <code>Widget_Contents_Post_Admin</code><br /> <code>Widget_Contents_Page_Admin</code><br /> <code>Widget_Contents_Post_Edit</code><br /> <code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code><br /> <code>Widget_Contents_Post_Recent</code><br /> <code>Widget_Contents_Related_Author</code></td> </tr> <tr> <td><code>excerptEx</code></td> <td><code>$excerpt</code><br /> <code>Widget_Abstract_Contents</code>对象</td> <td></td> <td><code>Widget_Archive</code><br /> <code>Widget_Upload</code><br /> <code>Widget_XmlRpc</code><br /> <code>Widget_Contents_Related</code><br /> <code>Widget_Contents_Attachment_Admin</code><br /> <code>Widget_Contents_Attachment_Related</code><br /> <code>Widget_Contents_Attachment_Unattached</code><br /> <code>Widget_Contents_Page_List</code><br /> <code>Widget_Contents_Post_Admin</code><br /> <code>Widget_Contents_Page_Admin</code><br /> <code>Widget_Contents_Post_Edit</code><br /> <code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code><br /> <code>Widget_Contents_Post_Recent</code><br /> <code>Widget_Contents_Related_Author</code></td> </tr> <tr> <td><code>content</code></td> <td><code>$text</code><br /> <code>Widget_Abstract_Contents</code>对象</td> <td></td> <td><code>Widget_Archive</code><br /> <code>Widget_Upload</code><br /> <code>Widget_XmlRpc</code><br /> <code>Widget_Contents_Related</code><br /> <code>Widget_Contents_Attachment_Admin</code><br /> <code>Widget_Contents_Attachment_Related</code><br /> <code>Widget_Contents_Attachment_Unattached</code><br /> <code>Widget_Contents_Page_List</code><br /> <code>Widget_Contents_Post_Admin</code><br /> <code>Widget_Contents_Page_Admin</code><br /> <code>Widget_Contents_Post_Edit</code><br /> <code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code><br /> <code>Widget_Contents_Post_Recent</code><br /> <code>Widget_Contents_Related_Author</code></td> </tr> <tr> <td><code>contentEx</code></td> <td><code>$content</code><br /> <code>Widget_Abstract_Contents</code>对象</td> <td></td> <td><code>Widget_Archive</code><br /> <code>Widget_Upload</code><br /> <code>Widget_XmlRpc</code><br /> <code>Widget_Contents_Related</code><br /> <code>Widget_Contents_Attachment_Admin</code><br /> <code>Widget_Contents_Attachment_Related</code><br /> <code>Widget_Contents_Attachment_Unattached</code><br /> <code>Widget_Contents_Page_List</code><br /> <code>Widget_Contents_Post_Admin</code><br /> <code>Widget_Contents_Page_Admin</code><br /> <code>Widget_Contents_Post_Edit</code><br /> <code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code><br /> <code>Widget_Contents_Post_Recent</code><br /> <code>Widget_Contents_Related_Author</code></td> </tr> <tr> <td><code>isFieldReadOnly</code></td> <td><code>$name</code></td> <td></td> <td><code>Widget_Archive</code><br /> <code>Widget_Upload</code><br /> <code>Widget_XmlRpc</code><br /> <code>Widget_Contents_Related</code><br /> <code>Widget_Contents_Attachment_Admin</code><br /> <code>Widget_Contents_Attachment_Related</code><br /> <code>Widget_Contents_Attachment_Unattached</code><br /> <code>Widget_Contents_Page_List</code><br /> <code>Widget_Contents_Post_Admin</code><br /> <code>Widget_Contents_Page_Admin</code><br /> <code>Widget_Contents_Post_Edit</code><br /> <code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code><br /> <code>Widget_Contents_Post_Recent</code><br /> <code>Widget_Contents_Related_Author</code></td> </tr> <tr> <td><code>filter</code></td> <td><code>$value</code><br /> <code>Widget_Abstract_Contents</code>对象</td> <td></td> <td><code>Widget_Archive</code><br /> <code>Widget_Upload</code><br /> <code>Widget_XmlRpc</code><br /> <code>Widget_Contents_Related</code><br /> <code>Widget_Contents_Attachment_Admin</code><br /> <code>Widget_Contents_Attachment_Related</code><br /> <code>Widget_Contents_Attachment_Unattached</code><br /> <code>Widget_Contents_Page_List</code><br /> <code>Widget_Contents_Post_Admin</code><br /> <code>Widget_Contents_Page_Admin</code><br /> <code>Widget_Contents_Post_Edit</code><br /> <code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code><br /> <code>Widget_Contents_Post_Recent</code><br /> <code>Widget_Contents_Related_Author</code></td> </tr> <tr> <td><code>title</code></td> <td><code>$title</code><br /> <code>Widget_Abstract_Contents</code>对象</td> <td></td> <td><code>Widget_Archive</code><br /> <code>Widget_Upload</code><br /> <code>Widget_XmlRpc</code><br /> <code>Widget_Contents_Related</code><br /> <code>Widget_Contents_Attachment_Admin</code><br /> <code>Widget_Contents_Attachment_Related</code><br /> <code>Widget_Contents_Attachment_Unattached</code><br /> <code>Widget_Contents_Page_List</code><br /> <code>Widget_Contents_Post_Admin</code><br /> <code>Widget_Contents_Page_Admin</code><br /> <code>Widget_Contents_Post_Edit</code><br /> <code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code><br /> <code>Widget_Contents_Post_Recent</code><br /> <code>Widget_Contents_Related_Author</code></td> </tr> <tr> <td><code>autoP</code></td> <td><code>$text</code></td> <td></td> <td><code>Widget_Archive</code><br /> <code>Widget_Upload</code><br /> <code>Widget_XmlRpc</code><br /> <code>Widget_Contents_Related</code><br /> <code>Widget_Contents_Attachment_Admin</code><br /> <code>Widget_Contents_Attachment_Related</code><br /> <code>Widget_Contents_Attachment_Unattached</code><br /> <code>Widget_Contents_Page_List</code><br /> <code>Widget_Contents_Post_Admin</code><br /> <code>Widget_Contents_Page_Admin</code><br /> <code>Widget_Contents_Post_Edit</code><br /> <code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code><br /> <code>Widget_Contents_Post_Recent</code><br /> <code>Widget_Contents_Related_Author</code></td> </tr> <tr> <td><code>markdown</code></td> <td><code>$text</code></td> <td></td> <td><code>Widget_Archive</code><br /> <code>Widget_Upload</code><br /> <code>Widget_XmlRpc</code><br /> <code>Widget_Contents_Related</code><br /> <code>Widget_Contents_Attachment_Admin</code><br /> <code>Widget_Contents_Attachment_Related</code><br /> <code>Widget_Contents_Attachment_Unattached</code><br /> <code>Widget_Contents_Page_List</code><br /> <code>Widget_Contents_Post_Admin</code><br /> <code>Widget_Contents_Page_Admin</code><br /> <code>Widget_Contents_Post_Edit</code><br /> <code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code><br /> <code>Widget_Contents_Post_Recent</code><br /> <code>Widget_Contents_Related_Author</code></td> </tr> </tbody> </table> </html> ==== Widget_Abstract_Metas ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>filter</code></td> <td><code>$value</code><br /> <code>Widget_Abstract_Metas</code>对象</td> <td></td> <td><code>Widget_Metas_Category_Edit</code><br /> <code>Widget_Metas_Category_List</code><br /> <code>Widget_Metas_Category_Admin</code><br /> <code>Widget_Metas_Tag_Cloud</code><br /> <code>Widget_Metas_Tag_Admin</code><br /> <code>Widget_Metas_Tag_Edit</code></td> </tr> </tbody> </table> </html> ==== Widget_Abstract_Users ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>filter</code></td> <td><code>$value</code><br /> <code>Widget_Abstract_Users</code>对象</td> <td></td> <td><code>Widget_Login</code><br /> <code>Widget_Logout</code><br /> <code>Widget_Register</code><br /> <code>Widget_Users_Admin</code><br /> <code>Widget_Users_Author</code><br /> <code>Widget_Users_Edit</code><br /> <code>Widget_Users_Profile</code></td> </tr> </tbody> </table> </html> ==== Widget_Comments_Archive ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>listComments</code></td> <td><code>$singleCommentOptions</code><br /> <code>Widget_Comments_Archive</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>reply</code></td> <td><code>$word</code><br /> <code>Widget_Comments_Archive</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>cancelReply</code></td> <td><code>$word</code><br /> <code>Widget_Comments_Archive</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_Comments_Edit ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>mark</code></td> <td><code>$comment</code><br /> <code>Widget_Comments_Edit</code>对象<br /> <code>$status</code></td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>delete</code></td> <td><code>$comment</code><br /> <code>Widget_Comments_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishDelete</code></td> <td><code>$comment</code><br /> <code>Widget_Comments_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>edit</code></td> <td><code>$comment</code><br /> <code>Widget_Comments_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishEdit</code></td> <td><code>Widget_Comments_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>comment</code></td> <td><code>$comment</code><br /> <code>Widget_Comments_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishComment</code></td> <td><code>Widget_Comments_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_Contents_Attachment_Edit ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>delete</code></td> <td><code>$post</code><br /> <code>Widget_Contents_Attachment_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishDelete</code></td> <td><code>$post</code><br /> <code>Widget_Contents_Attachment_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>delete</code></td> <td><code>$post</code><br /> <code>Widget_Contents_Attachment_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishDelete</code></td> <td><code>$post</code><br /> <code>Widget_Contents_Attachment_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_Contents_Page_Edit ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>write</code></td> <td><code>$contents</code><br /> <code>Widget_Contents_Page_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishPublish</code></td> <td><code>$contents</code><br /> <code>Widget_Contents_Page_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishSave</code></td> <td><code>$contents</code><br /> <code>Widget_Contents_Page_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>delete</code></td> <td><code>$page</code><br /> <code>Widget_Contents_Page_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> <tr> <td><code>finishDelete</code></td> <td><code>$page</code><br /> <code>Widget_Contents_Page_Edit</code>对象</td> <td></td> <td><cite>无</cite> </td> </tr> </tbody> </table> </html> ==== Widget_Contents_Post_Edit ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>getDefaultFieldItems</code></td> <td><code>$layout</code></td> <td></td> <td><code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code></td> </tr> <tr> <td><code>write</code></td> <td><code>$contents</code><br /> <code>Widget_Contents_Post_Edit</code>对象</td> <td></td> <td><code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code></td> </tr> <tr> <td><code>finishPublish</code></td> <td><code>$contents</code><br /> <code>Widget_Contents_Post_Edit</code>对象</td> <td></td> <td><code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code></td> </tr> <tr> <td><code>finishSave</code></td> <td><code>$contents</code><br /> <code>Widget_Contents_Post_Edit</code>对象</td> <td></td> <td><code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code></td> </tr> <tr> <td><code>delete</code></td> <td><code>$post</code><br /> <code>Widget_Contents_Post_Edit</code>对象</td> <td></td> <td><code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code></td> </tr> <tr> <td><code>finishDelete</code></td> <td><code>$post</code><br /> <code>Widget_Contents_Post_Edit</code>对象</td> <td></td> <td><code>Widget_Contents_Attachment_Edit</code><br /> <code>Widget_Contents_Page_Edit</code></td> </tr> </tbody> </table> </html> ==== Widget_Metas_Category_List ==== <html> <table class="inline"><thead><tr> <th>接口</th> <th>参数</th> <th>描述</th> <th>因为继承同样具有此接口的句柄</th> </tr></thead><tbody><tr> <td><code>listCategories</code></td> <td><code>$categoryOptions</code><br /> <code>Widget_Metas_Category_List</code>对象</td> <td></td> <td><code>Widget_Metas_Category_Admin</code></td> </tr> </tbody> </table> </html>
登录
文章
阅读
显示源文件
过去修订
搜索
打印/导出
可打印版本
工具
反向链接
最近更改
媒体管理器
网站地图
永久链接
引用此文