Z-Blog Wiki Z-Blog Wiki

Z-Blog官方文库

用户工具

站点工具


zblogphp:development:plugin:interfaces

差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

两侧同时换到之前的修订记录 前一修订版
后一修订版
前一修订版
zblogphp:development:plugin:interfaces [2020/05/17 18:36]
zx.asd
zblogphp:development:plugin:interfaces [2020/05/18 23:31] (当前版本)
zx.asd
行 11: 行 11:
  
 ===== c_system_dubug,​c_system_common里的接口 ===== ===== c_system_dubug,​c_system_common里的接口 =====
 + 
 + 
  
  
 ==== Filter_Plugin_Debug_Handler ==== ==== Filter_Plugin_Debug_Handler ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Debug_Handler ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义Debug_Shutdown_Handler,​Debug_Exception_Handler,​Debug_Error_Handler函数的接口 定义Debug_Shutdown_Handler,​Debug_Exception_Handler,​Debug_Error_Handler函数的接口
行 19: 行 24:
 ** 调用参数 ** ** 调用参数 **
 $type 类型(Shutdown|Exception|Error) $error 错误数据(对象或数组) $type 类型(Shutdown|Exception|Error) $error 错误数据(对象或数组)
 + 
 + 
  
  
 ==== Filter_Plugin_Debug_Display ==== ==== Filter_Plugin_Debug_Display ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Debug_Display ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义ZBlogException的Display函数的接口 定义ZBlogException的Display函数的接口
行 27: 行 37:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Autoload ==== ==== Filter_Plugin_Autoload ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Autoload ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 监控autoload魔术方法 监控autoload魔术方法
行 35: 行 50:
 ** 调用参数 ** ** 调用参数 **
 $classname $classname
 + 
 + 
  
  
 ==== Filter_Plugin_Logs ==== ==== Filter_Plugin_Logs ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Logs ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 监控记录函数 监控记录函数
行 43: 行 63:
 ** 调用参数 ** ** 调用参数 **
 $s,$iserror $s,$iserror
 + 
 + 
  
  
 + 
 + 
 ===== DbSql类里的接口 ===== ===== DbSql类里的接口 =====
 + 
 + 
  
  
 ==== Filter_Plugin_DbSql_Filter ==== ==== Filter_Plugin_DbSql_Filter ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_DbSql_Filter ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 DbSql类的SQL过滤和统计方法接口 DbSql类的SQL过滤和统计方法接口
行 54: 行 83:
 ** 调用参数 ** ** 调用参数 **
 $method, $args $method, $args
 + 
 + 
  
  
 + 
 + 
 ===== ZBP类里的接口 ===== ===== ZBP类里的接口 =====
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_Call ==== ==== Filter_Plugin_Zbp_Call ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_Call ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的魔术方法接口 Zbp类的魔术方法接口
行 65: 行 103:
 ** 调用参数 ** ** 调用参数 **
 $method, $args $method, $args
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_Get ==== ==== Filter_Plugin_Zbp_Get ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_Get ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的魔术方法接口 Zbp类的魔术方法接口
行 73: 行 116:
 ** 调用参数 ** ** 调用参数 **
 $name $name
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_Set ==== ==== Filter_Plugin_Zbp_Set ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_Set ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的魔术方法接口 Zbp类的魔术方法接口
行 81: 行 129:
 ** 调用参数 ** ** 调用参数 **
 $name,​$value $name,​$value
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_CheckRights ==== ==== Filter_Plugin_Zbp_CheckRights ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_CheckRights ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的检查权限接口(检查当前用户) Zbp类的检查权限接口(检查当前用户)
行 89: 行 142:
 ** 调用参数 ** ** 调用参数 **
 $action $action
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_ShowError ==== ==== Filter_Plugin_Zbp_ShowError ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_ShowError ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的显示错误接口 Zbp类的显示错误接口
行 97: 行 155:
 ** 调用参数 ** ** 调用参数 **
 $idortext $idortext
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_ShowValidCode ==== ==== Filter_Plugin_Zbp_ShowValidCode ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_ShowValidCode ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的显示验证码接口,具有唯一性; Zbp类的显示验证码接口,具有唯一性;
行 105: 行 168:
 ** 调用参数 ** ** 调用参数 **
 $id $id
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_CheckValidCode ==== ==== Filter_Plugin_Zbp_CheckValidCode ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_CheckValidCode ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的比对验证码接口,具有唯一性; Zbp类的比对验证码接口,具有唯一性;
行 113: 行 181:
 ** 调用参数 ** ** 调用参数 **
 $vaidcode,​$id $vaidcode,​$id
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_BuildTemplate ==== ==== Filter_Plugin_Zbp_BuildTemplate ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_BuildTemplate ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的重新编译模板接口 Zbp类的重新编译模板接口
行 121: 行 194:
 ** 调用参数 ** ** 调用参数 **
 $template $template
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_MakeTemplatetags ==== ==== Filter_Plugin_Zbp_MakeTemplatetags ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_MakeTemplatetags ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的生成模板标签接口 Zbp类的生成模板标签接口
行 129: 行 207:
 ** 调用参数 ** ** 调用参数 **
 $template $template
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_BuildModule ==== ==== Filter_Plugin_Zbp_BuildModule ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_BuildModule ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的生成模块内容的接口 Zbp类的生成模块内容的接口
行 137: 行 220:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_Load ==== ==== Filter_Plugin_Zbp_Load ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_Load ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的加载接口 Zbp类的加载接口
行 145: 行 233:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_Load_Pre ==== ==== Filter_Plugin_Zbp_Load_Pre ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_Load_Pre ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的加载(预处理)接口 Zbp类的加载(预处理)接口
行 153: 行 246:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_LoadManage ==== ==== Filter_Plugin_Zbp_LoadManage ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_LoadManage ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的后台管理初始加载接口 Zbp类的后台管理初始加载接口
行 161: 行 259:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Zbp_Terminate ==== ==== Filter_Plugin_Zbp_Terminate ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Zbp_Terminate ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Zbp类的终结接口 Zbp类的终结接口
行 169: 行 272:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 + 
 + 
 ===== 前台view,​index ===== ===== 前台view,​index =====
 + 
 + 
  
  
 ==== Filter_Plugin_Index_Begin ==== ==== Filter_Plugin_Index_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Index_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义index.php接口 起动 定义index.php接口 起动
行 180: 行 292:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Index_End ==== ==== Filter_Plugin_Index_End ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Index_End ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义index.php接口 结束 定义index.php接口 结束
行 188: 行 305:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Html_Js_Add ==== ==== Filter_Plugin_Html_Js_Add ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Html_Js_Add ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 c_html_js_add.php脚本接口,允许插件在c_html_js_add.php内输出内容 c_html_js_add.php脚本接口,允许插件在c_html_js_add.php内输出内容
行 196: 行 318:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Html_Js_ZbpConfig ==== ==== Filter_Plugin_Html_Js_ZbpConfig ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Html_Js_ZbpConfig ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 c_html_js_add.php脚本接口,允许插件设置zbpConfig c_html_js_add.php脚本接口,允许插件设置zbpConfig
行 204: 行 331:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Search_Begin ==== ==== Filter_Plugin_Search_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Search_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 搜索页接口,可以接管搜索页。 搜索页接口,可以接管搜索页。
行 212: 行 344:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Search_End ==== ==== Filter_Plugin_Search_End ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Search_End ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 搜索接口 结束 搜索接口 结束
行 220: 行 357:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Feed_Begin ==== ==== Filter_Plugin_Feed_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Feed_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Feed页接口,可以接管Feed页。 Feed页接口,可以接管Feed页。
行 228: 行 370:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Feed_End ==== ==== Filter_Plugin_Feed_End ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Feed_End ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Feed页接口 结束 Feed页接口 结束
行 236: 行 383:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 + 
 + 
 ===== cmd.php里的接口 ===== ===== cmd.php里的接口 =====
 + 
 + 
  
  
 ==== Filter_Plugin_Cmd_Begin ==== ==== Filter_Plugin_Cmd_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Cmd_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 cmd.php的启动接口,​可以在这里拦截各种action cmd.php的启动接口,​可以在这里拦截各种action
行 247: 行 403:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Cmd_End ==== ==== Filter_Plugin_Cmd_End ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Cmd_End ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 cmd.php的结束接口,​可以在这里拦截各种action之后的 cmd.php的结束接口,​可以在这里拦截各种action之后的
行 255: 行 416:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Cmd_Ajax ==== ==== Filter_Plugin_Cmd_Ajax ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Cmd_Ajax ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 cmd.php的Ajax命令专用接口,插件需要自行判断权限 cmd.php的Ajax命令专用接口,插件需要自行判断权限
行 263: 行 429:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Misc_Begin ==== ==== Filter_Plugin_Misc_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Misc_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 c_system_misc.php的启动接口,​可以在这里拦截各种type c_system_misc.php的启动接口,​可以在这里拦截各种type
行 271: 行 442:
 ** 调用参数 ** ** 调用参数 **
 $type 类型 $type 类型
 + 
 + 
  
  
 + 
 + 
 ===== 后台管理里的接口 ===== ===== 后台管理里的接口 =====
 + 
 + 
  
  
 ==== Filter_Plugin_Login_Header ==== ==== Filter_Plugin_Login_Header ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Login_Header ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义Login.php首页header接口 定义Login.php首页header接口
行 282: 行 462:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Other_Header ==== ==== Filter_Plugin_Other_Header ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Other_Header ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义其它页的header接口 定义其它页的header接口
行 290: 行 475:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_Begin ==== ==== Filter_Plugin_Admin_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 后台管理页的启动接口,​可以拦截后台管理请求实现自己的管理 后台管理页的启动接口,​可以拦截后台管理请求实现自己的管理
行 298: 行 488:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_Other_Action ==== ==== Filter_Plugin_Admin_Other_Action ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_Other_Action ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 后台管理页的拦截后台管理请求实现自己的Action 后台管理页的拦截后台管理请求实现自己的Action
行 306: 行 501:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_End ==== ==== Filter_Plugin_Admin_End ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_End ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 后台管理页的终结接口 后台管理页的终结接口
行 314: 行 514:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_Header ==== ==== Filter_Plugin_Admin_Header ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_Header ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义后台首页header接口 定义后台首页header接口
行 322: 行 527:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_Footer ==== ==== Filter_Plugin_Admin_Footer ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_Footer ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义后台首页footer接口 定义后台首页footer接口
行 330: 行 540:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_LeftMenu ==== ==== Filter_Plugin_Admin_LeftMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_LeftMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义后台左侧栏接口 定义后台左侧栏接口
行 338: 行 553:
 ** 调用参数 ** ** 调用参数 **
 &​$leftmenus &​$leftmenus
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_TopMenu ==== ==== Filter_Plugin_Admin_TopMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_TopMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义后台顶部导航栏接口 定义后台顶部导航栏接口
行 346: 行 566:
 ** 调用参数 ** ** 调用参数 **
 &​$topmenus &​$topmenus
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_SiteInfo_SubMenu ==== ==== Filter_Plugin_Admin_SiteInfo_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_SiteInfo_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 后台首页SubMenu 后台首页SubMenu
行 354: 行 579:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_ArticleMng_SubMenu ==== ==== Filter_Plugin_Admin_ArticleMng_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_ArticleMng_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章管理SubMenu 文章管理SubMenu
行 362: 行 592:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_PageMng_SubMenu ==== ==== Filter_Plugin_Admin_PageMng_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_PageMng_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 页面管理 页面管理
行 370: 行 605:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_CategoryMng_SubMenu ==== ==== Filter_Plugin_Admin_CategoryMng_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_CategoryMng_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 分类管理 分类管理
行 378: 行 618:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_CommentMng_SubMenu ==== ==== Filter_Plugin_Admin_CommentMng_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_CommentMng_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 评论管理 评论管理
行 386: 行 631:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_MemberMng_SubMenu ==== ==== Filter_Plugin_Admin_MemberMng_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_MemberMng_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 用户管理 用户管理
行 394: 行 644:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_UploadMng_SubMenu ==== ==== Filter_Plugin_Admin_UploadMng_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_UploadMng_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
  
行 402: 行 657:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_TagMng_SubMenu ==== ==== Filter_Plugin_Admin_TagMng_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_TagMng_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 标签管理 标签管理
行 410: 行 670:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_PluginMng_SubMenu ==== ==== Filter_Plugin_Admin_PluginMng_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_PluginMng_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 插件管理 插件管理
行 418: 行 683:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_ThemeMng_SubMenu ==== ==== Filter_Plugin_Admin_ThemeMng_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_ThemeMng_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 主题管理 主题管理
行 426: 行 696:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_ModuleMng_SubMenu ==== ==== Filter_Plugin_Admin_ModuleMng_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_ModuleMng_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 模块管理 模块管理
行 434: 行 709:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_SettingMng_SubMenu ==== ==== Filter_Plugin_Admin_SettingMng_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_SettingMng_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 设置管理 设置管理
行 442: 行 722:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Edit_SubMenu ==== ==== Filter_Plugin_Edit_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Edit_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 编辑页菜单(1.5.1加入) 编辑页菜单(1.5.1加入)
行 450: 行 735:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Tag_Edit_SubMenu ==== ==== Filter_Plugin_Tag_Edit_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Tag_Edit_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 标签编辑页菜单(1.5.1加入) 标签编辑页菜单(1.5.1加入)
行 458: 行 748:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Module_Edit_SubMenu ==== ==== Filter_Plugin_Module_Edit_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Module_Edit_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 模块编辑页菜单(1.5.1加入) 模块编辑页菜单(1.5.1加入)
行 466: 行 761:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Member_Edit_SubMenu ==== ==== Filter_Plugin_Member_Edit_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Member_Edit_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 用户编辑页菜单(1.5.1加入) 用户编辑页菜单(1.5.1加入)
行 474: 行 774:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Category_Edit_SubMenu ==== ==== Filter_Plugin_Category_Edit_SubMenu ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Category_Edit_SubMenu ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 分类编辑页菜单(1.5.1加入) 分类编辑页菜单(1.5.1加入)
行 482: 行 787:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_ArticleMng_Table ==== ==== Filter_Plugin_Admin_ArticleMng_Table ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_ArticleMng_Table ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章管理页表处理(1.5.1加入) 文章管理页表处理(1.5.1加入)
行 490: 行 800:
 ** 调用参数 ** ** 调用参数 **
 &​$article,&​$tabletds,&​$tableths &​$article,&​$tabletds,&​$tableths
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_PageMng_Table ==== ==== Filter_Plugin_Admin_PageMng_Table ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_PageMng_Table ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 页面管理页表处理(1.5.1加入) 页面管理页表处理(1.5.1加入)
行 498: 行 813:
 ** 调用参数 ** ** 调用参数 **
 &​$article,&​$tabletds,&​$tableths &​$article,&​$tabletds,&​$tableths
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_CategoryMng_Table ==== ==== Filter_Plugin_Admin_CategoryMng_Table ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_CategoryMng_Table ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 分类管理页表处理(1.5.1加入) 分类管理页表处理(1.5.1加入)
行 506: 行 826:
 ** 调用参数 ** ** 调用参数 **
 &​$category,&​$tabletds,&​$tableths &​$category,&​$tabletds,&​$tableths
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_CommentMng_Table ==== ==== Filter_Plugin_Admin_CommentMng_Table ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_CommentMng_Table ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 评论管理页表处理(1.5.1加入) 评论管理页表处理(1.5.1加入)
行 514: 行 839:
 ** 调用参数 ** ** 调用参数 **
 &​$cmt,&​$tabletds,&​$tableths,​$article &​$cmt,&​$tabletds,&​$tableths,​$article
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_MemberMng_Table ==== ==== Filter_Plugin_Admin_MemberMng_Table ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_MemberMng_Table ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 会员管理页表处理(1.5.1加入) 会员管理页表处理(1.5.1加入)
行 522: 行 852:
 ** 调用参数 ** ** 调用参数 **
 &​$member,&​$tabletds,&​$tableths &​$member,&​$tabletds,&​$tableths
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_UploadMng_Table ==== ==== Filter_Plugin_Admin_UploadMng_Table ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_UploadMng_Table ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 附件管理页表处理(1.5.1加入) 附件管理页表处理(1.5.1加入)
行 530: 行 865:
 ** 调用参数 ** ** 调用参数 **
 &​$upload,&​$tabletds,&​$tableths &​$upload,&​$tabletds,&​$tableths
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_TagMng_Table ==== ==== Filter_Plugin_Admin_TagMng_Table ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_TagMng_Table ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Tag管理页表处理(1.5.1加入) Tag管理页表处理(1.5.1加入)
行 538: 行 878:
 ** 调用参数 ** ** 调用参数 **
 &​$tag,&​$tabletds,&​$tableths &​$tag,&​$tabletds,&​$tableths
 + 
 + 
  
  
 ==== Filter_Plugin_Edit_Begin ==== ==== Filter_Plugin_Edit_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Edit_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章页面编辑页开始接口 文章页面编辑页开始接口
行 546: 行 891:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Edit_End ==== ==== Filter_Plugin_Edit_End ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Edit_End ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章页面编辑页结束接口 文章页面编辑页结束接口
行 554: 行 904:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Edit_Response ==== ==== Filter_Plugin_Edit_Response ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Edit_Response ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章页面编辑1号输出接口 文章页面编辑1号输出接口
行 562: 行 917:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Edit_Response2 ==== ==== Filter_Plugin_Edit_Response2 ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Edit_Response2 ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章页面编辑2号输出接口 文章页面编辑2号输出接口
行 570: 行 930:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Edit_Response4 ==== ==== Filter_Plugin_Edit_Response4 ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Edit_Response4 ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章页面编辑4号输出接口 文章页面编辑4号输出接口
行 578: 行 943:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Edit_Response5 ==== ==== Filter_Plugin_Edit_Response5 ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Edit_Response5 ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章页面编辑5号输出接口 文章页面编辑5号输出接口
行 586: 行 956:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Edit_Response3 ==== ==== Filter_Plugin_Edit_Response3 ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Edit_Response3 ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章页面编辑3号输出接口 文章页面编辑3号输出接口
行 594: 行 969:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Category_Edit_Response ==== ==== Filter_Plugin_Category_Edit_Response ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Category_Edit_Response ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 分类编辑页输出接口 分类编辑页输出接口
行 602: 行 982:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Tag_Edit_Response ==== ==== Filter_Plugin_Tag_Edit_Response ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Tag_Edit_Response ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 标签编辑页输出接口 标签编辑页输出接口
行 610: 行 995:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Member_Edit_Response ==== ==== Filter_Plugin_Member_Edit_Response ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Member_Edit_Response ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 会员编辑页输出接口 会员编辑页输出接口
行 618: 行 1008:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Module_Edit_Response ==== ==== Filter_Plugin_Module_Edit_Response ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Module_Edit_Response ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 模块编辑页输出接口 模块编辑页输出接口
行 626: 行 1021:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Admin_Js_Add ==== ==== Filter_Plugin_Admin_Js_Add ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Admin_Js_Add ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 c_admin_js_add.php脚本页的接口 c_admin_js_add.php脚本页的接口
行 634: 行 1034:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_OutputOptionItemsOfMemberLevel ==== ==== Filter_Plugin_OutputOptionItemsOfMemberLevel ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_OutputOptionItemsOfMemberLevel ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义OutputOptionItemsOfMemberLevel函数里的接口 定义OutputOptionItemsOfMemberLevel函数里的接口
行 642: 行 1047:
 ** 调用参数 ** ** 调用参数 **
 $default,​$tz $default,​$tz
 + 
 + 
  
  
 ==== Filter_Plugin_OutputOptionItemsOfMember_Begin ==== ==== Filter_Plugin_OutputOptionItemsOfMember_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_OutputOptionItemsOfMember_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义Filter_Plugin_OutputOptionItemsOfMember函数里的接口 定义Filter_Plugin_OutputOptionItemsOfMember函数里的接口
行 650: 行 1060:
 ** 调用参数 ** ** 调用参数 **
 $default,​$tz $default,​$tz
 + 
 + 
  
  
 ==== Filter_Plugin_OutputOptionItemsOfCategories ==== ==== Filter_Plugin_OutputOptionItemsOfCategories ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_OutputOptionItemsOfCategories ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义OutputOptionItemsOfCategories函数里的接口 定义OutputOptionItemsOfCategories函数里的接口
行 658: 行 1073:
 ** 调用参数 ** ** 调用参数 **
 $default,​$tz $default,​$tz
 + 
 + 
  
  
 ==== Filter_Plugin_OutputOptionItemsOfPostStatus ==== ==== Filter_Plugin_OutputOptionItemsOfPostStatus ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_OutputOptionItemsOfPostStatus ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义OutputOptionItemsOfPostStatus函数里的接口 定义OutputOptionItemsOfPostStatus函数里的接口
行 666: 行 1086:
 ** 调用参数 ** ** 调用参数 **
 $default,​$tz $default,​$tz
 + 
 + 
  
  
 ==== Filter_Plugin_OutputOptionItemsOfIsTop ==== ==== Filter_Plugin_OutputOptionItemsOfIsTop ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_OutputOptionItemsOfIsTop ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义OutputOptionItemsOfIsTop函数里的接口 定义OutputOptionItemsOfIsTop函数里的接口
行 674: 行 1099:
 ** 调用参数 ** ** 调用参数 **
 $default,​$tz $default,​$tz
 + 
 + 
  
  
 ==== Filter_Plugin_OutputOptionItemsOfMember ==== ==== Filter_Plugin_OutputOptionItemsOfMember ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_OutputOptionItemsOfMember ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义OutputOptionItemsOfMember函数里的接口 定义OutputOptionItemsOfMember函数里的接口
行 682: 行 1112:
 ** 调用参数 ** ** 调用参数 **
 $default,​$tz $default,​$tz
 + 
 + 
  
  
 ==== Filter_Plugin_OutputOptionItemsOfTemplate ==== ==== Filter_Plugin_OutputOptionItemsOfTemplate ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_OutputOptionItemsOfTemplate ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义OutputOptionItemsOfTemplate函数里的接口 定义OutputOptionItemsOfTemplate函数里的接口
行 690: 行 1125:
 ** 调用参数 ** ** 调用参数 **
 $default,​$tz $default,​$tz
 + 
 + 
  
  
 ==== Filter_Plugin_OutputOptionItemsOfCommon ==== ==== Filter_Plugin_OutputOptionItemsOfCommon ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_OutputOptionItemsOfCommon ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义OutputOptionItemsOfCommon函数里的接口,因为是通用型的,所以有$name 定义OutputOptionItemsOfCommon函数里的接口,因为是通用型的,所以有$name
行 698: 行 1138:
 ** 调用参数 ** ** 调用参数 **
 $default,​$array,​$name $default,​$array,​$name
 + 
 + 
  
  
 + 
 + 
 ===== c_system_event.php里的接口 ===== ===== c_system_event.php里的接口 =====
 + 
 + 
  
  
 ==== Filter_Plugin_VerifyLogin_Succeed ==== ==== Filter_Plugin_VerifyLogin_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_VerifyLogin_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 VerifyLogin成功的接口 VerifyLogin成功的接口
行 709: 行 1158:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_Logout_Succeed ==== ==== Filter_Plugin_Logout_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Logout_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Logout成功的接口 Logout成功的接口
行 717: 行 1171:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_GetPost_Result ==== ==== Filter_Plugin_GetPost_Result ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_GetPost_Result ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义GetPost输出结果接口 定义GetPost输出结果接口
行 725: 行 1184:
 ** 调用参数 ** ** 调用参数 **
 &$post &$post
 + 
 + 
  
  
 ==== Filter_Plugin_GetList_Result ==== ==== Filter_Plugin_GetList_Result ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_GetList_Result ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义GetList输出结果接口 定义GetList输出结果接口
行 733: 行 1197:
 ** 调用参数 ** ** 调用参数 **
 &$list &$list
 + 
 + 
  
  
 ==== Filter_Plugin_ViewIndex_Begin ==== ==== Filter_Plugin_ViewIndex_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewIndex_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义ViewIndex输出接口Begin 定义ViewIndex输出接口Begin
行 741: 行 1210:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_ViewFeed_Begin ==== ==== Filter_Plugin_ViewFeed_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewFeed_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义ViewFeed输出接口Begin 定义ViewFeed输出接口Begin
行 749: 行 1223:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_ViewSearch_Begin ==== ==== Filter_Plugin_ViewSearch_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewSearch_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义ViewSearch输出接口Begin 定义ViewSearch输出接口Begin
行 757: 行 1236:
 ** 调用参数 ** ** 调用参数 **
  
 + 
 + 
  
  
 ==== Filter_Plugin_ViewAuto_Begin ==== ==== Filter_Plugin_ViewAuto_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewAuto_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义ViewAuto输出接口Begin 定义ViewAuto输出接口Begin
行 765: 行 1249:
 ** 调用参数 ** ** 调用参数 **
 &$url &$url
 + 
 + 
  
  
 ==== Filter_Plugin_ViewAuto_End ==== ==== Filter_Plugin_ViewAuto_End ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewAuto_End ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义ViewAuto输出接口End 定义ViewAuto输出接口End
行 773: 行 1262:
 ** 调用参数 ** ** 调用参数 **
 &$url &$url
 + 
 + 
  
  
 ==== Filter_Plugin_ViewList_Begin ==== ==== Filter_Plugin_ViewList_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewList_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义列表输出接口 定义列表输出接口
行 781: 行 1275:
 ** 调用参数 ** ** 调用参数 **
 &​$page,&​$cate,&​$auth,&​$date,&​$tags &​$page,&​$cate,&​$auth,&​$date,&​$tags
 + 
 + 
  
  
 ==== Filter_Plugin_ViewList_Core ==== ==== Filter_Plugin_ViewList_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewList_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义列表核心接口 定义列表核心接口
行 789: 行 1288:
 ** 调用参数 ** ** 调用参数 **
 &​$type,&​$page,&​$category,&​$author,&​$datetime,&​$tag,&​$w,&​$pagebar &​$type,&​$page,&​$category,&​$author,&​$datetime,&​$tag,&​$w,&​$pagebar
 + 
 + 
  
  
 ==== Filter_Plugin_ViewSearch_Core ==== ==== Filter_Plugin_ViewSearch_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewSearch_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义搜索核心接口 定义搜索核心接口
行 797: 行 1301:
 ** 调用参数 ** ** 调用参数 **
 $q, $page, $w, $pagebar $q, $page, $w, $pagebar
 + 
 + 
  
  
 ==== Filter_Plugin_ViewList_Core ==== ==== Filter_Plugin_ViewList_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewList_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义Feed核心接口 定义Feed核心接口
行 805: 行 1314:
 ** 调用参数 ** ** 调用参数 **
 $w $w
 + 
 + 
  
  
 ==== Filter_Plugin_ViewFeed_End ==== ==== Filter_Plugin_ViewFeed_End ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewFeed_End ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义Feed核心接口 定义Feed核心接口
行 813: 行 1327:
 ** 调用参数 ** ** 调用参数 **
 $rss2 $rss2
 + 
 + 
  
  
 ==== Filter_Plugin_ViewPost_Begin ==== ==== Filter_Plugin_ViewPost_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewPost_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义POST显示输出begin接口 定义POST显示输出begin接口
行 821: 行 1340:
 ** 调用参数 ** ** 调用参数 **
 &​$id,&​$alias &​$id,&​$alias
 + 
 + 
  
  
 ==== Filter_Plugin_ViewPost_Core ==== ==== Filter_Plugin_ViewPost_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewPost_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 定义POST显示核心接口 定义POST显示核心接口
行 829: 行 1353:
 ** 调用参数 ** ** 调用参数 **
 &​$select,&​$w,&​$order,&​$limit,&​$option &​$select,&​$w,&​$order,&​$limit,&​$option
 + 
 + 
  
  
 ==== Filter_Plugin_ViewList_Template ==== ==== Filter_Plugin_ViewList_Template ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewList_Template ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
  
行 837: 行 1366:
 ** 调用参数 ** ** 调用参数 **
 &​$template &​$template
 + 
 + 
  
  
 ==== Filter_Plugin_ViewPost_Template ==== ==== Filter_Plugin_ViewPost_Template ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewPost_Template ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
  
行 845: 行 1379:
 ** 调用参数 ** ** 调用参数 **
 &​$template &​$template
 + 
 + 
  
  
 ==== Filter_Plugin_ViewSearch_Template ==== ==== Filter_Plugin_ViewSearch_Template ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewSearch_Template ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
  
行 853: 行 1392:
 ** 调用参数 ** ** 调用参数 **
 &​$template &​$template
 + 
 + 
  
  
 ==== Filter_Plugin_ViewComments_Template ==== ==== Filter_Plugin_ViewComments_Template ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewComments_Template ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
  
行 861: 行 1405:
 ** 调用参数 ** ** 调用参数 **
 &​$template &​$template
 + 
 + 
  
  
 ==== Filter_Plugin_ViewComment_Template ==== ==== Filter_Plugin_ViewComment_Template ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_ViewComment_Template ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
  
行 869: 行 1418:
 ** 调用参数 ** ** 调用参数 **
 &​$template &​$template
 + 
 + 
  
  
 ==== Filter_Plugin_PostModule_Core ==== ==== Filter_Plugin_PostModule_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostModule_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 模块编辑的核心接口 模块编辑的核心接口
行 877: 行 1431:
 ** 调用参数 ** ** 调用参数 **
 &$mod &$mod
 + 
 + 
  
  
 ==== Filter_Plugin_PostMember_Core ==== ==== Filter_Plugin_PostMember_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostMember_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 会员编辑的核心接口 会员编辑的核心接口
行 885: 行 1444:
 ** 调用参数 ** ** 调用参数 **
 &$mem &$mem
 + 
 + 
  
  
 ==== Filter_Plugin_PostTag_Core ==== ==== Filter_Plugin_PostTag_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostTag_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 标签编辑的核心接口 标签编辑的核心接口
行 893: 行 1457:
 ** 调用参数 ** ** 调用参数 **
 &$tag &$tag
 + 
 + 
  
  
 ==== Filter_Plugin_PostCategory_Core ==== ==== Filter_Plugin_PostCategory_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostCategory_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 分类编辑的核心接口 分类编辑的核心接口
行 901: 行 1470:
 ** 调用参数 ** ** 调用参数 **
 &$cate &$cate
 + 
 + 
  
  
 ==== Filter_Plugin_PostComment_Core ==== ==== Filter_Plugin_PostComment_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostComment_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 评论发表的核心接口 评论发表的核心接口
行 909: 行 1483:
 ** 调用参数 ** ** 调用参数 **
 &$cmt &$cmt
 + 
 + 
  
  
 ==== Filter_Plugin_CheckComment_Core ==== ==== Filter_Plugin_CheckComment_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_CheckComment_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 评论审核的核心接口 评论审核的核心接口
行 917: 行 1496:
 ** 调用参数 ** ** 调用参数 **
 &$cmt &$cmt
 + 
 + 
  
  
 ==== Filter_Plugin_PostArticle_Core ==== ==== Filter_Plugin_PostArticle_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostArticle_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章编辑的核心接口 文章编辑的核心接口
行 925: 行 1509:
 ** 调用参数 ** ** 调用参数 **
 &​$article &​$article
 + 
 + 
  
  
 ==== Filter_Plugin_PostPage_Core ==== ==== Filter_Plugin_PostPage_Core ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostPage_Core ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 页面编辑的核心接口 页面编辑的核心接口
行 933: 行 1522:
 ** 调用参数 ** ** 调用参数 **
 &​$article &​$article
 + 
 + 
  
  
 ==== Filter_Plugin_PostMember_Succeed ==== ==== Filter_Plugin_PostMember_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostMember_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 会员编辑成功的接口 会员编辑成功的接口
行 941: 行 1535:
 ** 调用参数 ** ** 调用参数 **
 &$mem &$mem
 + 
 + 
  
  
 ==== Filter_Plugin_PostTag_Succeed ==== ==== Filter_Plugin_PostTag_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostTag_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 标签编辑成功的接口 标签编辑成功的接口
行 949: 行 1548:
 ** 调用参数 ** ** 调用参数 **
 &$tag &$tag
 + 
 + 
  
  
 ==== Filter_Plugin_PostCategory_Succeed ==== ==== Filter_Plugin_PostCategory_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostCategory_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 分类编辑成功的接口 分类编辑成功的接口
行 957: 行 1561:
 ** 调用参数 ** ** 调用参数 **
 &$cate &$cate
 + 
 + 
  
  
 ==== Filter_Plugin_PostComment_Succeed ==== ==== Filter_Plugin_PostComment_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostComment_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 评论发表成功的接口 评论发表成功的接口
行 965: 行 1574:
 ** 调用参数 ** ** 调用参数 **
 &$cmt &$cmt
 + 
 + 
  
  
 ==== Filter_Plugin_CheckComment_Succeed ==== ==== Filter_Plugin_CheckComment_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_CheckComment_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 评论审核成功的接口 评论审核成功的接口
行 973: 行 1587:
 ** 调用参数 ** ** 调用参数 **
 &$cmt &$cmt
 + 
 + 
  
  
 ==== Filter_Plugin_PostPage_Succeed ==== ==== Filter_Plugin_PostPage_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostPage_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 页面编辑成功的接口 页面编辑成功的接口
行 981: 行 1600:
 ** 调用参数 ** ** 调用参数 **
 &​$article &​$article
 + 
 + 
  
  
 ==== Filter_Plugin_PostArticle_Succeed ==== ==== Filter_Plugin_PostArticle_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostArticle_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章编辑成功的接口 文章编辑成功的接口
行 989: 行 1613:
 ** 调用参数 ** ** 调用参数 **
 &​$article &​$article
 + 
 + 
  
  
 ==== Filter_Plugin_PostModule_Succeed ==== ==== Filter_Plugin_PostModule_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_PostModule_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 模块编辑成功的接口 模块编辑成功的接口
行 997: 行 1626:
 ** 调用参数 ** ** 调用参数 **
 &$mod &$mod
 + 
 + 
  
  
 ==== Filter_Plugin_DelMember_Succeed ==== ==== Filter_Plugin_DelMember_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_DelMember_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 会员删除成功的接口 会员删除成功的接口
行 1005: 行 1639:
 ** 调用参数 ** ** 调用参数 **
 &$mem &$mem
 + 
 + 
  
  
 ==== Filter_Plugin_DelTag_Succeed ==== ==== Filter_Plugin_DelTag_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_DelTag_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 标签删除成功的接口 标签删除成功的接口
行 1013: 行 1652:
 ** 调用参数 ** ** 调用参数 **
 &$tag &$tag
 + 
 + 
  
  
 ==== Filter_Plugin_DelCategory_Succeed ==== ==== Filter_Plugin_DelCategory_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_DelCategory_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 分类删除成功的接口 分类删除成功的接口
行 1021: 行 1665:
 ** 调用参数 ** ** 调用参数 **
 &$cate &$cate
 + 
 + 
  
  
 ==== Filter_Plugin_DelComment_Succeed ==== ==== Filter_Plugin_DelComment_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_DelComment_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 评论删除成功的接口 评论删除成功的接口
行 1029: 行 1678:
 ** 调用参数 ** ** 调用参数 **
 &$cmt &$cmt
 + 
 + 
  
  
 ==== Filter_Plugin_DelPage_Succeed ==== ==== Filter_Plugin_DelPage_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_DelPage_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 页面删除成功的接口 页面删除成功的接口
行 1037: 行 1691:
 ** 调用参数 ** ** 调用参数 **
 &​$article &​$article
 + 
 + 
  
  
 ==== Filter_Plugin_DelArticle_Succeed ==== ==== Filter_Plugin_DelArticle_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_DelArticle_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 文章删除成功的接口 文章删除成功的接口
行 1045: 行 1704:
 ** 调用参数 ** ** 调用参数 **
 &​$article &​$article
 + 
 + 
  
  
 ==== Filter_Plugin_DelModule_Succeed ==== ==== Filter_Plugin_DelModule_Succeed ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_DelModule_Succeed ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 模块删除成功的接口 模块删除成功的接口
行 1053: 行 1717:
 ** 调用参数 ** ** 调用参数 **
 &$mod &$mod
 + 
 + 
  
  
 ==== Filter_Plugin_EnablePlugin ==== ==== Filter_Plugin_EnablePlugin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_EnablePlugin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 EnablePlugin(1.6.0加入) EnablePlugin(1.6.0加入)
行 1061: 行 1730:
 ** 调用参数 ** ** 调用参数 **
 &name &name
 + 
 + 
  
  
 ==== Filter_Plugin_DisablePlugin ==== ==== Filter_Plugin_DisablePlugin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_DisablePlugin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 DisablePlugin(1.6.0加入) DisablePlugin(1.6.0加入)
行 1069: 行 1743:
 ** 调用参数 ** ** 调用参数 **
 &name &name
 + 
 + 
  
  
 ==== Filter_Plugin_BatchPost ==== ==== Filter_Plugin_BatchPost ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_BatchPost ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 BatchPost(1.6.1加入) BatchPost(1.6.1加入)
行 1077: 行 1756:
 ** 调用参数 ** ** 调用参数 **
 &type &type
 + 
 + 
  
  
 + 
 + 
 ===== lib类里的接口 ===== ===== lib类里的接口 =====
 + 
 + 
  
  
 ==== Filter_Plugin_Post_Url ==== ==== Filter_Plugin_Post_Url ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Post_Url ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Post类Url方法的接口 干预Post类Url方法的接口
行 1088: 行 1776:
 ** 调用参数 ** ** 调用参数 **
 &$this &$this
 + 
 + 
  
  
 ==== Filter_Plugin_Post_Get ==== ==== Filter_Plugin_Post_Get ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Post_Get ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Post类Get方法的接口 干预Post类Get方法的接口
行 1096: 行 1789:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method &$this, $method
 + 
 + 
  
  
 ==== Filter_Plugin_Post_Set ==== ==== Filter_Plugin_Post_Set ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Post_Set ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Post类Set方法的接口 干预Post类Set方法的接口
行 1104: 行 1802:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method, $arg &$this, $method, $arg
 + 
 + 
  
  
 ==== Filter_Plugin_Category_Url ==== ==== Filter_Plugin_Category_Url ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Category_Url ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Category类Url方法的接口 干预Category类Url方法的接口
行 1112: 行 1815:
 ** 调用参数 ** ** 调用参数 **
 &$this &$this
 + 
 + 
  
  
 ==== Filter_Plugin_Category_Get ==== ==== Filter_Plugin_Category_Get ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Category_Get ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Category类Get方法的接口 干预Category类Get方法的接口
行 1120: 行 1828:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method &$this, $method
 + 
 + 
  
  
 ==== Filter_Plugin_Category_Set ==== ==== Filter_Plugin_Category_Set ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Category_Set ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Category类Set方法的接口 干预Category类Set方法的接口
行 1128: 行 1841:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method, $arg &$this, $method, $arg
 + 
 + 
  
  
 ==== Filter_Plugin_Tag_Url ==== ==== Filter_Plugin_Tag_Url ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Tag_Url ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Tag类Url方法的接口 干预Tag类Url方法的接口
行 1136: 行 1854:
 ** 调用参数 ** ** 调用参数 **
 &$this &$this
 + 
 + 
  
  
 ==== Filter_Plugin_Category_Get ==== ==== Filter_Plugin_Category_Get ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Category_Get ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Tag类Get方法的接口 干预Tag类Get方法的接口
行 1144: 行 1867:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method &$this, $method
 + 
 + 
  
  
 ==== Filter_Plugin_Tag_Set ==== ==== Filter_Plugin_Tag_Set ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Tag_Set ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Tag类Set方法的接口 干预Tag类Set方法的接口
行 1152: 行 1880:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method, $arg &$this, $method, $arg
 + 
 + 
  
  
 ==== Filter_Plugin_Member_Url ==== ==== Filter_Plugin_Member_Url ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Member_Url ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Member类Url方法的接口 干预Member类Url方法的接口
行 1160: 行 1893:
 ** 调用参数 ** ** 调用参数 **
 &$this &$this
 + 
 + 
  
  
 ==== Filter_Plugin_Member_Get ==== ==== Filter_Plugin_Member_Get ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Member_Get ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Member类Get方法的接口 干预Member类Get方法的接口
行 1168: 行 1906:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method &$this, $method
 + 
 + 
  
  
 ==== Filter_Plugin_Member_Set ==== ==== Filter_Plugin_Member_Set ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Member_Set ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Member类Set方法的接口 干预Member类Set方法的接口
行 1176: 行 1919:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method, $arg &$this, $method, $arg
 + 
 + 
  
  
 ==== Filter_Plugin_Post_CommentPostUrl ==== ==== Filter_Plugin_Post_CommentPostUrl ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Post_CommentPostUrl ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Post类的CommentPostUrl接口 Post类的CommentPostUrl接口
行 1184: 行 1932:
 ** 调用参数 ** ** 调用参数 **
 $post $post
 + 
 + 
  
  
 ==== Filter_Plugin_Post_Prev ==== ==== Filter_Plugin_Post_Prev ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Post_Prev ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Post类的Prev接口 Post类的Prev接口
行 1192: 行 1945:
 ** 调用参数 ** ** 调用参数 **
 $post $post
 + 
 + 
  
  
 ==== Filter_Plugin_Post_Next ==== ==== Filter_Plugin_Post_Next ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Post_Next ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Post类的Next接口 Post类的Next接口
行 1200: 行 1958:
 ** 调用参数 ** ** 调用参数 **
 $post $post
 + 
 + 
  
  
 ==== Filter_Plugin_Post_RelatedList ==== ==== Filter_Plugin_Post_RelatedList ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Post_RelatedList ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Post类的RelatedList 接口 Post类的RelatedList 接口
行 1208: 行 1971:
 ** 调用参数 ** ** 调用参数 **
 $post $post
 + 
 + 
  
  
 ==== Filter_Plugin_Post_Call ==== ==== Filter_Plugin_Post_Call ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Post_Call ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Post类的魔术方法接口 Post类的魔术方法接口
行 1216: 行 1984:
 ** 调用参数 ** ** 调用参数 **
 &​$post,​$method,​$args &​$post,​$method,​$args
 + 
 + 
  
  
 ==== Filter_Plugin_Comment_Call ==== ==== Filter_Plugin_Comment_Call ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Comment_Call ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Comment类的魔术方法接口 Comment类的魔术方法接口
行 1224: 行 1997:
 ** 调用参数 ** ** 调用参数 **
 &​$comment,​$method,​$args &​$comment,​$method,​$args
 + 
 + 
  
  
 ==== Filter_Plugin_Comment_Get ==== ==== Filter_Plugin_Comment_Get ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Comment_Get ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Comment类Get方法的接口 干预Comment类Get方法的接口
行 1232: 行 2010:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method &$this, $method
 + 
 + 
  
  
 ==== Filter_Plugin_Comment_Set ==== ==== Filter_Plugin_Comment_Set ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Comment_Set ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Comment类Set方法的接口 干预Comment类Set方法的接口
行 1240: 行 2023:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method, $arg &$this, $method, $arg
 + 
 + 
  
  
 ==== Filter_Plugin_Tag_Call ==== ==== Filter_Plugin_Tag_Call ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Tag_Call ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Tag类的魔术方法接口 Tag类的魔术方法接口
行 1248: 行 2036:
 ** 调用参数 ** ** 调用参数 **
 &​$tag,​$method,​$args &​$tag,​$method,​$args
 + 
 + 
  
  
 ==== Filter_Plugin_Category_Call ==== ==== Filter_Plugin_Category_Call ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Category_Call ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Category类的魔术方法接口 Category类的魔术方法接口
行 1256: 行 2049:
 ** 调用参数 ** ** 调用参数 **
 &​$category,​$method,​$args &​$category,​$method,​$args
 + 
 + 
  
  
 ==== Filter_Plugin_Member_Call ==== ==== Filter_Plugin_Member_Call ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Member_Call ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Member类的魔术方法接口 Member类的魔术方法接口
行 1264: 行 2062:
 ** 调用参数 ** ** 调用参数 **
 &​$member,​$method,​$args &​$member,​$method,​$args
 + 
 + 
  
  
 ==== Filter_Plugin_Post_Del ==== ==== Filter_Plugin_Post_Del ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Post_Del ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Post类的Del方法接口 Post类的Del方法接口
行 1272: 行 2075:
 ** 调用参数 ** ** 调用参数 **
 &$post &$post
 + 
 + 
  
  
 ==== Filter_Plugin_Tag_Del ==== ==== Filter_Plugin_Tag_Del ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Tag_Del ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Tag类的Del方法接口 Tag类的Del方法接口
行 1280: 行 2088:
 ** 调用参数 ** ** 调用参数 **
 &$post &$post
 + 
 + 
  
  
 ==== Filter_Plugin_Comment_Del ==== ==== Filter_Plugin_Comment_Del ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Comment_Del ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Comment类的Del方法接口 Comment类的Del方法接口
行 1288: 行 2101:
 ** 调用参数 ** ** 调用参数 **
 &​$comment &​$comment
 + 
 + 
  
  
 ==== Filter_Plugin_Category_Del ==== ==== Filter_Plugin_Category_Del ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Category_Del ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Category类的Del方法接口 Category类的Del方法接口
行 1296: 行 2114:
 ** 调用参数 ** ** 调用参数 **
 &​$category &​$category
 + 
 + 
  
  
 ==== Filter_Plugin_Member_Del ==== ==== Filter_Plugin_Member_Del ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Member_Del ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Member类的Del方法接口 Member类的Del方法接口
行 1304: 行 2127:
 ** 调用参数 ** ** 调用参数 **
 &​$member &​$member
 + 
 + 
  
  
 ==== Filter_Plugin_Module_Del ==== ==== Filter_Plugin_Module_Del ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Module_Del ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Module类的Del方法接口 Module类的Del方法接口
行 1312: 行 2140:
 ** 调用参数 ** ** 调用参数 **
 &​$module &​$module
 + 
 + 
  
  
 ==== Filter_Plugin_Module_Get ==== ==== Filter_Plugin_Module_Get ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Module_Get ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Module类Get方法的接口 干预Module类Get方法的接口
行 1320: 行 2153:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method &$this, $method
 + 
 + 
  
  
 ==== Filter_Plugin_Module_Set ==== ==== Filter_Plugin_Module_Set ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Module_Set ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Module类Set方法的接口 干预Module类Set方法的接口
行 1328: 行 2166:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method, $arg &$this, $method, $arg
 + 
 + 
  
  
 ==== Filter_Plugin_Post_Save ==== ==== Filter_Plugin_Post_Save ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Post_Save ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Post类的Save方法接口 Post类的Save方法接口
行 1336: 行 2179:
 ** 调用参数 ** ** 调用参数 **
 &$post &$post
 + 
 + 
  
  
 ==== Filter_Plugin_Comment_Save ==== ==== Filter_Plugin_Comment_Save ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Comment_Save ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Comment类的Save方法接口 Comment类的Save方法接口
行 1344: 行 2192:
 ** 调用参数 ** ** 调用参数 **
 &​$comment &​$comment
 + 
 + 
  
  
 ==== Filter_Plugin_Tag_Save ==== ==== Filter_Plugin_Tag_Save ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Tag_Save ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Tag类的Save方法接口 Tag类的Save方法接口
行 1352: 行 2205:
 ** 调用参数 ** ** 调用参数 **
 &$tag &$tag
 + 
 + 
  
  
 ==== Filter_Plugin_Category_Save ==== ==== Filter_Plugin_Category_Save ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Category_Save ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Category类的Save方法接口 Category类的Save方法接口
行 1360: 行 2218:
 ** 调用参数 ** ** 调用参数 **
 &​$category &​$category
 + 
 + 
  
  
 ==== Filter_Plugin_Member_Save ==== ==== Filter_Plugin_Member_Save ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Member_Save ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Member类的Save方法接口 Member类的Save方法接口
行 1368: 行 2231:
 ** 调用参数 ** ** 调用参数 **
 &​$member &​$member
 + 
 + 
  
  
 ==== Filter_Plugin_Module_Save ==== ==== Filter_Plugin_Module_Save ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Module_Save ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Module类的Save方法接口 Module类的Save方法接口
行 1376: 行 2244:
 ** 调用参数 ** ** 调用参数 **
 &​$module &​$module
 + 
 + 
  
  
 ==== Filter_Plugin_Member_Avatar ==== ==== Filter_Plugin_Member_Avatar ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Member_Avatar ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Member类的Avatar接口 Member类的Avatar接口
行 1384: 行 2257:
 ** 调用参数 ** ** 调用参数 **
 $member $member
 + 
 + 
  
  
 ==== Filter_Plugin_Upload_SaveFile ==== ==== Filter_Plugin_Upload_SaveFile ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Upload_SaveFile ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Upload类的SaveFile方法接口 Upload类的SaveFile方法接口
行 1392: 行 2270:
 ** 调用参数 ** ** 调用参数 **
 $tmp,$this $tmp,$this
 + 
 + 
  
  
 ==== Filter_Plugin_Upload_SaveBase64File ==== ==== Filter_Plugin_Upload_SaveBase64File ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Upload_SaveBase64File ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Upload类的SaveBase64File方法接口 Upload类的SaveBase64File方法接口
行 1400: 行 2283:
 ** 调用参数 ** ** 调用参数 **
 $str64,​$this $str64,​$this
 + 
 + 
  
  
 ==== Filter_Plugin_Upload_DelFile ==== ==== Filter_Plugin_Upload_DelFile ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Upload_DelFile ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Upload类的DelFile方法接口 Upload类的DelFile方法接口
行 1408: 行 2296:
 ** 调用参数 ** ** 调用参数 **
 $this $this
 + 
 + 
  
  
 ==== Filter_Plugin_Upload_Url ==== ==== Filter_Plugin_Upload_Url ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Upload_Url ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Upload类的Url方法接口 Upload类的Url方法接口
行 1416: 行 2309:
 ** 调用参数 ** ** 调用参数 **
 $upload $upload
 + 
 + 
  
  
 ==== Filter_Plugin_Upload_Get ==== ==== Filter_Plugin_Upload_Get ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Upload_Get ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Upload类Get方法的接口 干预Upload类Get方法的接口
行 1424: 行 2322:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method &$this, $method
 + 
 + 
  
  
 ==== Filter_Plugin_Upload_Set ==== ==== Filter_Plugin_Upload_Set ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Upload_Set ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 干预Upload类Set方法的接口 干预Upload类Set方法的接口
行 1432: 行 2335:
 ** 调用参数 ** ** 调用参数 **
 &$this, $method, $arg &$this, $method, $arg
 + 
 + 
  
  
 ==== Filter_Plugin_Upload_Dir ==== ==== Filter_Plugin_Upload_Dir ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Upload_Dir ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Upload类的Dir方法接口 Upload类的Dir方法接口
行 1440: 行 2348:
 ** 调用参数 ** ** 调用参数 **
 $upload $upload
 + 
 + 
  
  
 ==== Filter_Plugin_App_Pack ==== ==== Filter_Plugin_App_Pack ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_App_Pack ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
  
 ** 调用参数 ** ** 调用参数 **
 + 
 + 
  
  
 ==== Filter_Plugin_Template_Compiling_Begin ==== ==== Filter_Plugin_Template_Compiling_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Template_Compiling_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Template类编译一个模板前的接口 Template类编译一个模板前的接口
行 1454: 行 2372:
 ** 调用参数 ** ** 调用参数 **
 $this,​$content $this,​$content
 + 
 + 
  
  
 ==== Filter_Plugin_Template_Compiling_End ==== ==== Filter_Plugin_Template_Compiling_End ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Template_Compiling_End ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Template类编译一个模板后的接口 Template类编译一个模板后的接口
行 1462: 行 2385:
 ** 调用参数 ** ** 调用参数 **
 $this,​$content $this,​$content
 + 
 + 
  
  
 ==== Filter_Plugin_Template_GetTemplate ==== ==== Filter_Plugin_Template_GetTemplate ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Template_GetTemplate ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Template类读取一个模板前的接口 Template类读取一个模板前的接口
行 1470: 行 2398:
 ** 调用参数 ** ** 调用参数 **
 $this,$name $this,$name
 + 
 + 
  
  
 ==== Filter_Plugin_Template_Display ==== ==== Filter_Plugin_Template_Display ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Template_Display ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 Template类显示接口 Template类显示接口
行 1478: 行 2411:
 ** 调用参数 ** ** 调用参数 **
 $this, $entryPage $this, $entryPage
 + 
 + 
  
  
 + 
 + 
 ===== 大数据操作相关 ===== ===== 大数据操作相关 =====
 + 
 + 
  
  
 ==== Filter_Plugin_LargeData_Article ==== ==== Filter_Plugin_LargeData_Article ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_LargeData_Article ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 大数据文章接口 大数据文章接口
行 1489: 行 2431:
 ** 调用参数 ** ** 调用参数 **
 &​$select,&​$where,&​$order,&​$limit,&​$option &​$select,&​$where,&​$order,&​$limit,&​$option
 + 
 + 
  
  
 ==== Filter_Plugin_LargeData_Page ==== ==== Filter_Plugin_LargeData_Page ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_LargeData_Page ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 大数据页面接口 大数据页面接口
行 1497: 行 2444:
 ** 调用参数 ** ** 调用参数 **
 &​$select,&​$where,&​$order,&​$limit,&​$option &​$select,&​$where,&​$order,&​$limit,&​$option
 + 
 + 
  
  
 ==== Filter_Plugin_LargeData_Comment ==== ==== Filter_Plugin_LargeData_Comment ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_LargeData_Comment ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 大数据评论接口 大数据评论接口
行 1505: 行 2457:
 ** 调用参数 ** ** 调用参数 **
 &​$select,&​$where,&​$order,&​$limit,&​$option &​$select,&​$where,&​$order,&​$limit,&​$option
 + 
 + 
  
  
 ==== Filter_Plugin_LargeData_CountTagArray ==== ==== Filter_Plugin_LargeData_CountTagArray ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_LargeData_CountTagArray ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 大数据增减文章标签关联表 大数据增减文章标签关联表
行 1513: 行 2470:
 ** 调用参数 ** ** 调用参数 **
 $string, $plus, $articleid $string, $plus, $articleid
 + 
 + 
  
  
 ==== Filter_Plugin_LargeData_GetList ==== ==== Filter_Plugin_LargeData_GetList ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_LargeData_GetList ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 大数据GetList函数 大数据GetList函数
行 1521: 行 2483:
 ** 调用参数 ** ** 调用参数 **
 &​$select,&​$where,&​$order,&​$limit,&​$option &​$select,&​$where,&​$order,&​$limit,&​$option
 + 
 + 
  
  
 + 
 + 
 ===== 其它杂项接口 ===== ===== 其它杂项接口 =====
 + 
 + 
  
  
 ==== Filter_Plugin_Xmlrpc_Begin ==== ==== Filter_Plugin_Xmlrpc_Begin ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_Xmlrpc_Begin ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 xml-rpc页的begin接口(1.5.1加入) xml-rpc页的begin接口(1.5.1加入)
行 1532: 行 2503:
 ** 调用参数 ** ** 调用参数 **
 &xml &xml
 + 
 + 
  
  
 ==== Filter_Plugin_CSP_Backend ==== ==== Filter_Plugin_CSP_Backend ====
 +<code php>
 +DefinePluginFilter('​Filter_Plugin_CSP_Backend ');
 +</​code>​
 ** 调用方法 ** ** 调用方法 **
 后台CSP接口(1.5.2加入) 后台CSP接口(1.5.2加入)
行 1540: 行 2516:
 ** 调用参数 ** ** 调用参数 **
 &xml &xml
 + 
 + 
 +
 +
 + 
 + 
 +
 +
 +
  
  
zblogphp/development/plugin/interfaces.1589711782.txt · 最后更改: 2020/05/17 18:36 由 zx.asd