国产精品爱啪在线线免费观看_97视频精品_欧美精品一区二区在线播放_国产欧美久久一区二区三区

新秀網絡驗證系統

標題: Discuz 驗證擴展【X3.4】 二次開發 - 在線手冊 [打印本頁]

作者: admin    時間: 2021-9-22 14:57
標題: Discuz 驗證擴展【X3.4】 二次開發 - 在線手冊
驗證擴展二次開發

本擴展由PHP+MYSQL語言開發,通過內嵌在新秀網絡驗證系統HOOK鉤子,在正常API接口執行時自動調用,不需要擴展時無需設置。

1、驗證擴展是結合新秀網絡驗證系統進行的二次開發,不能獨立使用;

2、驗證擴展開發遵循Discuz、新秀網絡驗證、PHP語言規范開發;

3、驗證擴展適用于新秀網絡驗證系統ver6.1版本以后;

4、本功能與新秀網絡驗證系統,代碼相互獨立,但功能同時執行;

5、驗證擴展開發可使用Discuz內置函數、新秀網絡驗證內置函數、PHP函數等。

適用環境:php版本>5.6、Mysql版本>5.5以上、Discuz版本>3.0。

= Discuz資料庫  = Discuz插件開發文檔  = 開發交流  =  BUG反饋  =  QQ客服:3188639  QQ交流群:281079920


二次開發常用函數

1、DB數據庫操作函數    /*常用MYSQL數據庫操作命令,增、減、改、查功能函數。*/

2、新秀網絡驗證數據庫對照表    /*新秀網絡驗證系統內部,所有數據庫表及說明*/

3、Discuz官方數據庫對照表  /*Discuz官方數據庫表,包括discuz、UCente數據庫字典。*/

4、Discuz基礎框架、類、函數    /*包含Discuz官方基礎框架、類、函數、方法使用說明。*/

5、新秀網絡基礎框架類、函數    /*包含新秀網絡驗證基礎框架、類、函數、方法使用說明。*/

6、PHP在線手冊    /*PHP官方原生態語法、類、庫手冊。*/


驗證擴展開發視頻教程

新手入門教程 鏈接:http://www.5566wy.com/plugin.php?id=it618_video:product&pid=2


驗證擴展開發開發示例

1、獲取版塊主題API更改返回值 點擊訪問


使 用 簡 介

1、下載安裝ver6.0以上新秀網絡驗證系統:點擊下載

2、安裝完成后,在后臺點擊插件 —> “驗證擴展”頁面

3、根據內置擴展開發說明,進行開發即可,完成后直接保存。

(, 下載次數: 1058)

4、內置擴展文件目錄說明

Discuz論壇系統內絕對路徑:\source\plugin\xinxiu_network\extend\extend_network.php

xinxiu_network \\新秀網絡驗證系統插件主目錄

—extend \\內置擴展存放目錄

——extend_network.php \\驗證擴展開發文件 (即:后臺“驗證擴展”頁面內編輯的文件)

5、如何安裝、開發、調試?

#1、下載新秀網絡驗證文件后,自帶擴展文件,無需額外下載。需注意:【版本更新時請及時備份擴展開發代碼,否則將會被覆蓋

#2、使用PHP代碼編輯軟件或后臺驗證擴展頁面,對擴展文件 extend_network.php 進行開發,注意:UTF8及GBK編碼問題。【開發者必須具備基礎以上PHP語言水平】

#3、如需新增方法類時,請不要與Discuz通用函數類、新秀驗證框架通用函數類、PHP語言通用函數類沖突,否則無法使用,開發調試時請做好數據庫備份

#4、根據擴展開發文檔開發,不想使用某一個鉤子功能時代碼進行注釋即可,無需刪除代碼:

       單行注釋:在代碼行前輸入: //   雙斜杠即可。

       多行注釋:在代碼塊上下輸入: /* 注釋代碼行 */  即可。


驗證擴展源文件extend_network.php
  1. <?php
  2.     /*
  3.      技術支持 QQ:3188639 QQ交流群:281079920
  4.      官方網站 http://www.5566wy.com/
  5.      獲取授權 http://www.5566wy.com/plugin.php?id=xinxiu_license:accredit
  6.      擴展開發手冊 http://www.5566wy.com/forum.php?mod=viewthread&tid=432
  7.      嚴禁反編譯、逆向等任何形式的侵權行為,違者將追究法律責任!
  8.     */
  9. if(!defined('IN_DISCUZ')) {
  10. exit('Access Denied');
  11. }

  12. C::import('class/client','plugin/xinxiu_network',false);//引入系統核心類

  13. class extend_network extends class_client{

  14.     public $config;//可自定義變量,在構造方法中設置變量值。

  15.     public function __construct()//構造方法
  16.     {
  17.         $this->config = xx_G::xinxiu_network();//獲取新秀網絡插件配置信息
  18.         parent::__construct(false);//禁止刪除或更改
  19.     }

  20.     //內置擴展代碼區域
  21. }
復制代碼

URLS參數加密傳輸代碼實例
  1.     public function hook_urls($function,$action,$urls){
  2.         /**
  3.          * 高級自定義,參數傳輸urls解密處理功能
  4.          * 如果參數中帶有&urls參數,就會調用此功能
  5.          * @param string $function 接口模塊
  6.          * @param string $action 接口方法
  7.          * @param string $urls 接口密串
  8.          * 無需返回值,直接處理json返回
  9.          */
  10.          //將加密的密文串進行解密還原
  11.         $str = base64_decode($urls);
  12.          //將解密還原的密文串,重新按明文api接口進行組裝
  13.         $geturl = $_SERVER['SERVER_NAME'].'/plugin.php?id='.$function.'&action='.$action.$str;
  14.         $outp = xx_curl::get_url($geturl);//利用內置的api接口get方法進行訪問
  15.         exit($outp);//退出,并返回數據
  16.     }
復制代碼

傳輸、管理密鑰自定義代碼實例
  1.     public function hook_apikey($key,$salt,$apikey){
  2.         /**
  3.          * 使用帶傳輸密鑰的接口時,觸發對傳輸密鑰進行自定義驗證!
  4.          * @param string $key 用戶提交的傳輸密鑰
  5.          * @param string $salt 后臺設置的salt值
  6.          * @param string $apikey 后臺設置的傳輸密鑰
  7.          * 接收三個參數,進行判斷比對!
  8.          */
  9.         $md5str = md5($apikey.$salt);
  10.         if ($key == $md5str){//判斷是否相等
  11.             return true;
  12.                 //正確不做任何處理,跳過系統下一步key邏輯驗證。
  13.         }else{
  14.             return false;
  15.                 //錯誤,則進行系統下一步key邏輯驗證。也可使用$this->json_output(400,'返回錯誤信息');直接結束。
  16.            
  17.         }
  18.     }
  19.     public function hook_adminkey($key,$salt,$adminkey){
  20.         /**
  21.          * 使用帶管理密鑰的接口時,觸發對管理密鑰進行自定義驗證!
  22.          * @param string $key 用戶提交的管理密鑰
  23.          * @param string $salt 后臺設置的salt值
  24.          * @param string $adminkey 后臺設置的管理密鑰
  25.          * 接收三個參數,進行判斷比對!
  26.          */
  27.         $md5str = md5($adminkey.$salt);//base64或者RSA、RC4、sha1~
  28.          if ($key == $md5str){//判斷是否相等
  29.             return true ;
  30.                 //正確不做任何處理,跳過系統下一步adminkey邏輯驗證。
  31.         }else{
  32.             return false;
  33.                 //錯誤,則進行系統下一步adminkey邏輯驗證。也可使用$this->json_output(400,'返回錯誤信息');直接結束。
  34.         }
  35.     }
復制代碼

所有接口方法、接口參數代碼實例
舉例:
用戶登錄接口:http://xxx.com/...&action=login_user&username=demo&password=demo
其中:login_user接口方法  username、password 接口參數
  1.     public function hook_action_login_user($uid,$array_get){//所有接口方法調用
  2.         /**
  3.          * 所有接口方法使用時,觸發此操作!調用方式為:“hook_action_+接口方法”,例:hook_action_login_user
  4.          * @param string $uid 用戶uid
  5.          * @param array  $array_get 接收用戶提交的所有參數及對應值
  6.          * 接收以上兩個參數,無需返回值,自動執行系統下一步操作。
  7.          */
  8.         var_dump($uid,$array_get);//輸出返回數據
  9.     }
  10.     public function hook_param_username($params,$value){//所有參數調用
  11.         /**
  12.          * 所有接口方法使用時,觸發此操作!調用方式為:“hook_param_+參數”,例:hook_param_username
  13.          * @param string $params 接口傳輸參數username名字
  14.          * @param string $value 接口傳輸參數username對應的值
  15.          * 接收以上一個參數的值,并返回一個替換的值。return
  16.          */
  17.         //正常情況下用戶名是 demo

  18.         $params = base64_decode($value);//如果是BASE64加密,對值進行解密
  19.         return $params;//返回解密結果,替換username參數的值
  20.     }
復制代碼

接口方法執行結束代碼實例
  1.     public function hook_exit_login_user($output){//所有接口方法執行結束,記錄日志到數據庫之前調用
  2.         /**
  3.          * 所有接口方法使用時,觸發此操作!調用方式為:“hook_exit_接口方法”,例:hook_exit_login_user
  4.          * @param string $output 執行結果
  5.          * 接收$output參數,無需返回值,如無退出操作,則進行下一步日志入庫。
  6.          */
  7.         exit($output);//直接退出,則實現日志不入庫。
  8.     }
復制代碼

login_user登錄接口代碼實例
  1.     public function hook_login_user_start(){//login_user登錄接口開始
  2.         /**
  3.          * 用戶通過login_user登錄前觸發
  4.          * 截取提交參數信息$_GET;
  5.          * 具體信息參數解釋詳見login_user接口文檔
  6.          * 無需返回值,不能結束
  7.          */
  8.         var_dump($_GET);
  9.     }
  10.     public function hook_login_user_end($arr){//login_user登錄接口結束
  11.         /**
  12.          * 用戶通過login_user登錄結束后觸發
  13.          * 接收返回數據$arr;
  14.          * $arr[0]--用戶uid 、$arr[1]--用戶名、$arr[2]--用戶密碼、$arr[3]--用戶郵箱;
  15.          * 其中$arr[0]大于 0:返回用戶 ID,表示用戶登錄成功、-1:用戶不存在,或者被刪除、-2:密碼錯、-3:安全提問錯
  16.          * 無需返回值,不能結束
  17.          */
  18.         var_dump($arr);
  19.     }
復制代碼

login_register注冊接口代碼實例
  1.     public function hook_login_register_start(){//login_register注冊接口開始
  2.         /**
  3.          * 用戶通過login_register登錄前觸發
  4.          * 截取提交參數信息$_GET;
  5.          * 具體信息參數解釋詳見login_register接口文檔
  6.          * 無需返回值,不能結束
  7.          */
  8.         var_dump($_GET);
  9.     }
  10.     public function hook_login_register_end($uid){//login_register注冊接口結束
  11.     /**
  12.      * 用戶通過login_register登錄結束后觸發
  13.      * 接收返回數據$uid;
  14.      * 當$uid大于 0:返回用戶 ID,表示用戶注冊成功、-1:用戶名不合法、-2:包含不允許注冊的詞語、
  15. -3:用戶名已經存在、-4:Email 格式有誤、-5:Email 不允許注冊、-6:該 Email 已經被注冊
  16.      * 無需返回值,不能結束
  17.      */
  18.         var_dump($uid);
  19.     }
復制代碼

DISCUZ官方網頁嵌入點代碼實例
特別注意:
1
、確定使用某一個嵌入點時,請在后臺“驗證擴展”頁面,編輯嵌入點文件(hook.class.php),將使用的對應嵌入點代碼前面注釋清除即可。
2、在調試完成后,不需要的嵌入點,請及時注釋;
3、注意:把不用的嵌入點必須全部注釋掉,否則將影響論壇訪問速度,切記!!!。
(, 下載次數: 2937)
  1.     public function hook_discuz_userapp_userapp_menu_bottom(){
  2.         ##官方嵌入點,調用實例
  3.         return 'userapp_menu_bottom'.'調用成功!';
  4.     }
復制代碼
(, 下載次數: 1163)

  1.     //全局鉤子
  2.     //        所有模塊執行前被調用

  3.     function common(){
  4.     xx_client::class_hook('hook_discuz_common',array(xx_G::member(),$_GET));
  5.     }
  6.     /**
  7.      * 用于在帖子內容解析時嵌入自己的功能,函數中 $_G['discuzcodemessage'] 變量為待解析的字串
  8.      * $value: array(
  9.      * 'param' => caller 函數的參數數組,
  10.      * 'caller' => caller 函數,此嵌入點被哪個函數調用
  11.      * 'discuzcode' 被 discuzcode() 調用
  12.      * 'messagecutstr' 被 messagecutstr() 調用
  13.      */
  14.     public function hook_discuz_discuzcode($value, $member, $get)
  15.     {
  16.     }

  17.     /**
  18.      * 用于在主題刪除前后嵌入自己的功能,此函數將在 deletethread() 中被調用 2 次,
  19.      * 函數中 $_G['deletethreadtids'] 變量為待處理的 TID 數組
  20.      * $value: array(
  21.      * 'param' => deletethread() 函數的參數數組,
  22.      * 'step' => 刪除的步驟
  23.      * 'check' 檢測步驟
  24.      * 'delete' 刪除步驟
  25.      * )
  26.      */
  27.     public function hook_discuz_deletethread($value, $member, $get)
  28.     {
  29.     }

  30.     /**
  31.      * 用于在帖子刪除前后嵌入自己的功能,此函數將在 deletepost() 中被調用 2 次,
  32.      * 函數中 $_G['deletepostids'] 變量為待處理的 ID 數組
  33.      * $value: array(
  34.      * 'param' => deletepost() 函數的參數數組,
  35.      * 'step' => 刪除的步驟
  36.      * 'check' 檢測步驟
  37.      * 'delete' 刪除步驟
  38.      * )
  39.      */
  40.     public function hook_discuz_deletepost($value, $member, $get)
  41.     {
  42.     }

  43.     /**
  44.      * 用于在頭像調用時嵌入自己的功能,函數中 $_G['hookavatar'] 變量為新頭像返回值
  45.      * $value: array(
  46.      * 'param' => avatar() 函數的參數數組
  47.      * )
  48.      */
  49.     public function hook_discuz_avatar($value, $member, $get)
  50.     {
  51.     }

  52.     /**
  53.      * 貼內用戶信息標記,返回值為標記顯示內容    全局嵌入點類
  54.      * $post: 當前帖子信息數組
  55.      * $start: 用戶填寫的前置字符
  56.      * $end: 用戶填寫的后置字符
  57.      */
  58.     public function hook_discuz_profile_node($post, $start, $end, $member, $get)
  59.     {
  60.     }
  61.     public function hook_discuz_spacecp_credit_extra($member, $get)
  62.     {
  63.     }
  64.     public function hook_discuz_faq_extra($member, $get)
  65.     {
  66.     }
  67.     public function hook_discuz_global_footer($member, $get)
  68.     {
  69.     }
  70.     public function hook_discuz_global_footerlink($member, $get)
  71.     {
  72.     }
  73.     public function hook_discuz_global_cpnav_top($member, $get)
  74.     {
  75.     }
  76.     public function hook_discuz_global_cpnav_extra1($member, $get)
  77.     {
  78.     }
  79.     public function hook_discuz_global_cpnav_extra2($member, $get)
  80.     {
  81.     }
  82.     public function hook_discuz_global_usernav_extra1($member, $get)
  83.     {
  84.     }
  85.     public function hook_discuz_global_usernav_extra2($member, $get)
  86.     {
  87.     }
  88.     public function hook_discuz_global_usernav_extra3($member, $get)
  89.     {
  90.     }
  91.     public function hook_discuz_global_usernav_extra4($member, $get)
  92.     {
  93.     }
  94.     public function hook_discuz_global_nav_extra($member, $get)
  95.     {
  96.     }
  97.     public function hook_discuz_global_header($member, $get)
  98.     {
  99.     }
  100.     public function hook_discuz_global_userabout_top($member, $get)
  101.     {
  102.     }
  103.     public function hook_discuz_userapp_menu_top($member, $get)
  104.     {
  105.     }
  106.     public function hook_discuz_userapp_menu_middle($member, $get)
  107.     {
  108.     }
  109.     public function hook_discuz_global_userabout_bottom($value, $member, $get)
  110.     {
  111.     }
  112.     public function hook_discuz_forum_post_top($member, $get)
  113.     {
  114.     }
  115.     public function hook_discuz_forum_post_infloat_top($member, $get)
  116.     {
  117.     }
  118.     public function hook_discuz_forum_index_status_extra($member, $get)
  119.     {
  120.     }
  121.     public function hook_discuz_forum_collection_index_top($member, $get)
  122.     {
  123.     }
  124.     public function hook_discuz_forum_collection_index_bottom($member, $get)
  125.     {
  126.     }
  127.     public function hook_discuz_forum_collection_nav_extra($member, $get)
  128.     {
  129.     }
  130.     public function hook_discuz_forum_collection_viewoptions($member, $get)
  131.     {
  132.     }
  133.     public function hook_discuz_forum_collection_view_top($member, $get)
  134.     {
  135.     }
  136.     public function hook_discuz_forum_collection_threadlistbottom($member, $get)
  137.     {
  138.     }
  139.     public function hook_discuz_forum_collection_relatedop($member, $get)
  140.     {
  141.     }
  142.     public function hook_discuz_forum_collection_view_bottom($member, $get)
  143.     {
  144.     }
  145.     public function hook_discuz_forum_collection_side_bottom($member, $get)
  146.     {
  147.     }
  148.     public function hook_discuz_forum_index_nav_extra($member, $get)
  149.     {
  150.     }
  151.     public function hook_discuz_forum_index_top($member, $get)
  152.     {
  153.     }
  154.     public function hook_discuz_forum_index_catlist_top($member, $get)
  155.     {
  156.     }
  157.     public function hook_discuz_forum_index_favforum_extra($value, $member, $get)
  158.     {
  159.     }
  160.     public function hook_discuz_forum_index_catlist($value, $member, $get)
  161.     {
  162.     }
  163.     public function hook_discuz_forum_index_forum_extra($value, $member, $get)
  164.     {
  165.     }
  166.     public function hook_discuz_forum_index_middle($member, $get)
  167.     {
  168.     }
  169.     public function hook_discuz_forum_index_bottom($member, $get)
  170.     {
  171.     }
  172.     public function hook_discuz_forum_index_side_top($member, $get)
  173.     {
  174.     }
  175.     public function hook_discuz_forum_index_side_bottom($member, $get)
  176.     {
  177.     }
  178.     public function hook_discuz_forum_viewthread_attach_extra($value, $member, $get)
  179.     {
  180.     }
  181.     public function hook_discuz_forum_post_image_btn_extra($member, $get)
  182.     {
  183.     }
  184.     public function hook_discuz_forum_post_image_tab_extra($member, $get)
  185.     {
  186.     }
  187.     public function hook_discuz_forum_post_attach_btn_extra($member, $get)
  188.     {
  189.     }
  190.     public function hook_discuz_forum_post_attach_tab_extra($member, $get)
  191.     {
  192.     }
  193.     public function hook_discuz_forum_forumdisplay_leftside_top($member, $get)
  194.     {
  195.     }
  196.     public function hook_discuz_forum_forumdisplay_leftside_bottom($member, $get)
  197.     {
  198.     }
  199.     public function hook_discuz_forum_forumdisplay_forumaction($member, $get)
  200.     {
  201.     }
  202.     public function hook_discuz_forum_forumdisplay_modlink($member, $get)
  203.     {
  204.     }
  205.     public function hook_discuz_forum_forumdisplay_top($member, $get)
  206.     {
  207.     }
  208.     public function hook_discuz_forum_forumdisplay_middle($member, $get)
  209.     {
  210.     }
  211.     public function hook_discuz_forum_forumdisplay_postbutton_top($member, $get)
  212.     {
  213.     }
  214.     public function hook_discuz_forum_forumdisplay_threadtype_inner($member, $get)
  215.     {
  216.     }
  217.     public function hook_discuz_forum_forumdisplay_filter_extra($member, $get)
  218.     {
  219.     }
  220.     public function hook_discuz_forum_forumdisplay_threadtype_extra($member, $get)
  221.     {
  222.     }
  223.     public function hook_discuz_forum_forumdisplay_bottom($member, $get)
  224.     {
  225.     }
  226.     public function hook_discuz_forum_forumdisplay_side_top($member, $get)
  227.     {
  228.     }
  229.     public function hook_discuz_forum_forumdisplay_side_bottom($member, $get)
  230.     {
  231.     }
  232.     public function hook_discuz_forum_forumdisplay_fastpost_content($member, $get)
  233.     {
  234.     }
  235.     public function hook_discuz_forum_forumdisplay_fastpost_func_extra($member, $get)
  236.     {
  237.     }
  238.     public function hook_discuz_forum_forumdisplay_fastpost_ctrl_extra($member, $get)
  239.     {
  240.     }
  241.     public function hook_discuz_forum_global_login_text($member, $get)
  242.     {
  243.     }
  244.     public function hook_discuz_forum_forumdisplay_fastpost_btn_extrat($member, $get)
  245.     {
  246.     }
  247.     public function hook_discuz_forum_forumdisplay_fastpost_sync_method($member, $get)
  248.     {
  249.     }
  250.     public function hook_discuz_forum_forumdisplay_thread($value, $member, $get)
  251.     {
  252.     }
  253.     public function hook_discuz_forum_forumdisplay_thread_subject($value, $member, $get)
  254.     {
  255.     }
  256.     public function hook_discuz_forum_forumdisplay_author($value, $member, $get)
  257.     {
  258.     }
  259.     public function hook_discuz_forum_forumdisplay_threadlist_bottom($member, $get)
  260.     {
  261.     }
  262.     public function hook_discuz_forum_forumdisplay_postbutton_bottom($member, $get)
  263.     {
  264.     }
  265.     public function hook_discuz_forum_forumdisplay_subforum_extra($value, $member, $get)
  266.     {
  267.     }
  268.     public function hook_discuz_forum_guide_nav_extra($member, $get)
  269.     {
  270.     }
  271.     public function hook_discuz_forum_guide_top($member, $get)
  272.     {
  273.     }
  274.     public function hook_discuz_forum_guide_bottom($member, $get)
  275.     {
  276.     }
  277.     public function hook_discuz_forum_index_navbar($member, $get)
  278.     {
  279.     }
  280.     public function hook_discuz_forum_post_middle($member, $get)
  281.     {
  282.     }
  283.     public function hook_discuz_forum_post_btn_extra($member, $get)
  284.     {
  285.     }
  286.     public function hook_discuz_forum_post_sync_method($member, $get)
  287.     {
  288.     }
  289.     public function hook_discuz_forum_post_bottom($member, $get)
  290.     {
  291.     }
  292.     public function hook_discuz_forum_post_activity_extra($member, $get)
  293.     {
  294.     }
  295.     public function hook_discuz_forum_post_debate_extra($member, $get)
  296.     {
  297.     }
  298.     public function hook_discuz_forum_post_editorctrl_right($member, $get)
  299.     {
  300.     }
  301.     public function hook_discuz_forum_post_editorctrl_left($member, $get)
  302.     {
  303.     }
  304.     public function hook_discuz_forum_post_editorctrl_top($member, $get)
  305.     {
  306.     }
  307.     public function hook_discuz_forum_post_editorctrl_bottom($member, $get)
  308.     {
  309.     }
  310.     public function hook_discuz_forum_post_side_top($member, $get)
  311.     {
  312.     }
  313.     public function hook_discuz_forum_post_side_bottom($member, $get)
  314.     {
  315.     }
  316.     public function hook_discuz_forum_post_infloat_middle($member, $get)
  317.     {
  318.     }
  319.     public function hook_discuz_forum_post_infloat_btn_extra($member, $get)
  320.     {
  321.     }
  322.     public function hook_discuz_forum_post_poll_extra($member, $get)
  323.     {
  324.     }
  325.     public function hook_discuz_forum_post_reward_extra($member, $get)
  326.     {
  327.     }
  328.     public function hook_discuz_forum_post_trade_extra($member, $get)
  329.     {
  330.     }
  331.     public function hook_discuz_forum_forumdisplay_modlayer($member, $get)
  332.     {
  333.     }
  334.     public function hook_discuz_forum_viewthread_tradeinfo_extra($member, $get)
  335.     {
  336.     }
  337.     public function hook_discuz_forum_viewthread_top($member, $get)
  338.     {
  339.     }
  340.     public function hook_discuz_forum_viewthread_postbutton_top($member, $get)
  341.     {
  342.     }
  343.     public function hook_discuz_forum_viewthread_modoption($member, $get)
  344.     {
  345.     }
  346.     public function hook_discuz_forum_viewthread_beginline($member, $get)
  347.     {
  348.     }
  349.     public function hook_discuz_forum_viewthread_title_extra($member, $get)
  350.     {
  351.     }
  352.     public function hook_discuz_forum_viewthread_title_row($member, $get)
  353.     {
  354.     }
  355.     public function hook_discuz_forum_viewthread_middle($member, $get)
  356.     {
  357.     }
  358.     public function hook_discuz_forum_viewthread_bottom($member, $get)
  359.     {
  360.     }
  361.     public function hook_discuz_forum_viewthread_activity_extra1($member, $get)
  362.     {
  363.     }
  364.     public function hook_discuz_forum_viewthread_activity_extra2($member, $get)
  365.     {
  366.     }
  367.     public function hook_discuz_forum_viewthread_fastpost_side($member, $get)
  368.     {
  369.     }
  370.     public function hook_discuz_forum_viewthread_fastpost_content($member, $get)
  371.     {
  372.     }
  373.     public function hook_discuz_forum_viewthread_fastpost_func_extra($member, $get)
  374.     {
  375.     }
  376.     public function hook_discuz_forum_viewthread_fastpost_ctrl_extra($member, $get)
  377.     {
  378.     }
  379.     public function hook_discuz_forum_viewthread_fastpost_btn_extra($member, $get)
  380.     {
  381.     }
  382.     public function hook_discuz_forum_viewthread_postheader($value, $member, $get)
  383.     {
  384.     }
  385.     public function hook_discuz_forum_viewthread_endline($value, $member, $get)
  386.     {
  387.     }
  388.     public function hook_discuz_forum_viewthread_profileside($value, $member, $get)
  389.     {
  390.     }
  391.     public function hook_discuz_forum_viewthread_imicons($value, $member, $get)
  392.     {
  393.     }
  394.     public function hook_discuz_forum_viewthread_magic_user($value, $member, $get)
  395.     {
  396.     }
  397.     public function hook_discuz_forum_viewthread_avatar($value, $member, $get)
  398.     {
  399.     }
  400.     public function hook_discuz_forum_viewthread_sidetop($value, $member, $get)
  401.     {
  402.     }
  403.     public function hook_discuz_forum_viewthread_sidebottom($value, $member, $get)
  404.     {
  405.     }
  406.     public function hook_discuz_forum_viewthread_modaction($member, $get)
  407.     {
  408.     }
  409.     public function hook_discuz_forum_viewthread_share_method($member, $get)
  410.     {
  411.     }
  412.     public function hook_discuz_forum_viewthread_useraction($member, $get)
  413.     {
  414.     }
  415.     public function hook_discuz_forum_viewthread_postsightmlafter($value, $member, $get)
  416.     {
  417.     }
  418.     public function hook_discuz_forum_viewthread_postfooter($value, $member, $get)
  419.     {
  420.     }
  421.     public function hook_discuz_forum_viewthread_postaction($value, $member, $get)
  422.     {
  423.     }
  424.     public function hook_discuz_forum_viewthread_magic_thread($member, $get)
  425.     {
  426.     }
  427.     public function hook_discuz_forum_viewthread_magic_post($value, $member, $get)
  428.     {
  429.     }
  430.     public function hook_discuz_forum_viewthread_posttop($value, $member, $get)
  431.     {
  432.     }
  433.     public function hook_discuz_forum_viewthread_postbottom($value, $member, $get)
  434.     {
  435.     }
  436.     public function hook_discuz_forum_viewthread_poll_top($member, $get)
  437.     {
  438.     }
  439.     public function hook_discuz_forum_viewthread_poll_bottom($member, $get)
  440.     {
  441.     }
  442.     public function hook_discuz_forum_viewthread_useraction_prefix($member, $get)
  443.     {
  444.     }
  445.     public function hook_discuz_forum_viewthread_side_bottom($member, $get)
  446.     {
  447.     }
  448.     public function hook_discuz_group_group_navlink($member, $get)
  449.     {
  450.     }
  451.     public function hook_discuz_group_forumdisplay_navlink($member, $get)
  452.     {
  453.     }
  454.     public function hook_discuz_group_group_top($member, $get)
  455.     {
  456.     }
  457.     public function hook_discuz_group_forumdisplay_top($member, $get)
  458.     {
  459.     }
  460.     public function hook_discuz_group_group_nav_extra($member, $get)
  461.     {
  462.     }
  463.     public function hook_discuz_group_forumdisplay_nav_extra($member, $get)
  464.     {
  465.     }
  466.     public function hook_discuz_group_group_bottom($member, $get)
  467.     {
  468.     }
  469.     public function hook_discuz_group_forumdisplay_bottom($member, $get)
  470.     {
  471.     }
  472.     public function hook_discuz_group_group_side_bottom($member, $get)
  473.     {
  474.     }
  475.     public function hook_discuz_group_forumdisplay_side_bottom($member, $get)
  476.     {
  477.     }
  478.     public function hook_discuz_group_forumdisplay_postbutton_top($member, $get)
  479.     {
  480.     }
  481.     public function hook_discuz_group_forumdisplay_filter_extra($member, $get)
  482.     {
  483.     }
  484.     public function hook_discuz_group_forumdisplay_thread($value, $member, $get)
  485.     {
  486.     }
  487.     public function hook_discuz_group_forumdisplay_postbutton_bottom($member, $get)
  488.     {
  489.     }
  490.     public function hook_discuz_group_my_header($member, $get)
  491.     {
  492.     }
  493.     public function hook_discuz_group_my_bottom($member, $get)
  494.     {
  495.     }
  496.     public function hook_discuz_group_my_side_top($member, $get)
  497.     {
  498.     }
  499.     public function hook_discuz_group_my_side_bottom($member, $get)
  500.     {
  501.     }
  502.     public function hook_discuz_group_group_index_side($member, $get)
  503.     {
  504.     }
  505.     public function hook_discuz_group_group_side_top($member, $get)
  506.     {
  507.     }
  508.     public function hook_discuz_group_forumdisplay_side_top($member, $get)
  509.     {
  510.     }
  511.     public function hook_discuz_group_index_header($member, $get)
  512.     {
  513.     }
  514.     public function hook_discuz_group_index_top($member, $get)
  515.     {
  516.     }
  517.     public function hook_discuz_group_index_bottom($member, $get)
  518.     {
  519.     }
  520.     public function hook_discuz_group_index_side_top($member, $get)
  521.     {
  522.     }
  523.     public function hook_discuz_group_index_side_bottom($member, $get)
  524.     {
  525.     }
  526.     public function hook_discuz_home_follow_nav_extra($member, $get)
  527.     {
  528.     }
  529.     public function hook_discuz_home_follow_top($member, $get)
  530.     {
  531.     }
  532.     public function hook_discuz_home_spacecp_avatar_top($member, $get)
  533.     {
  534.     }
  535.     public function hook_discuz_home_spacecp_avatar_bottom($member, $get)
  536.     {
  537.     }
  538.     public function hook_discuz_home_spacecp_blog_top($member, $get)
  539.     {
  540.     }
  541.     public function hook_discuz_home_spacecp_blog_middle($member, $get)
  542.     {
  543.     }
  544.     public function hook_discuz_home_spacecp_blog_bottom($member, $get)
  545.     {
  546.     }
  547.     public function hook_discuz_home_spacecp_credit_top($member, $get)
  548.     {
  549.     }
  550.     public function hook_discuz_home_spacecp_credit_extra($member, $get)
  551.     {
  552.     }
  553.     public function hook_discuz_home_spacecp_credit_bottom($member, $get)
  554.     {
  555.     }
  556.     public function hook_discuz_home_spacecp_privacy_top($member, $get)
  557.     {
  558.     }
  559.     public function hook_discuz_home_spacecp_privacy_base_extra($member, $get)
  560.     {
  561.     }
  562.     public function hook_discuz_home_spacecp_privacy_feed_extra($member, $get)
  563.     {
  564.     }
  565.     public function hook_discuz_home_spacecp_privacy_bottom($member, $get)
  566.     {
  567.     }
  568.     public function hook_discuz_home_spacecp_profile_top($member, $get)
  569.     {
  570.     }
  571.     public function hook_discuz_home_spacecp_profile_extra($member, $get)
  572.     {
  573.     }
  574.     public function hook_discuz_home_spacecp_profile_bottom($member, $get)
  575.     {
  576.     }
  577.     public function hook_discuz_home_spacecp_promotion_top($member, $get)
  578.     {
  579.     }
  580.     public function hook_discuz_home_spacecp_promotion_bottom($member, $get)
  581.     {
  582.     }
  583.     public function hook_discuz_home_spacecp_usergroup_top($member, $get)
  584.     {
  585.     }
  586.     public function hook_discuz_home_spacecp_usergroup_bottom($member, $get)
  587.     {
  588.     }
  589.     public function hook_discuz_home_space_album_pic_top($member, $get)
  590.     {
  591.     }
  592.     public function hook_discuz_home_space_album_pic_op_extra($member, $get)
  593.     {
  594.     }
  595.     public function hook_discuz_home_space_album_pic_bottom($member, $get)
  596.     {
  597.     }
  598.     public function hook_discuz_home_space_album_pic_face_extra($member, $get)
  599.     {
  600.     }
  601.     public function hook_discuz_home_space_album_op_extra($member, $get)
  602.     {
  603.     }
  604.     public function hook_discuz_home_space_blog_list_status($value, $member, $get)
  605.     {
  606.     }
  607.     public function hook_discuz_home_space_blog_title($member, $get)
  608.     {
  609.     }
  610.     public function hook_discuz_home_space_blog_share_method($member, $get)
  611.     {
  612.     }
  613.     public function hook_discuz_home_space_blog_op_extra($member, $get)
  614.     {
  615.     }
  616.     public function hook_discuz_home_space_blog_face_extra($member, $get)
  617.     {
  618.     }
  619.     public function hook_discuz_home_space_card_top($member, $get)
  620.     {
  621.     }
  622.     public function hook_discuz_home_space_card_baseinfo_middle($member, $get)
  623.     {
  624.     }
  625.     public function hook_discuz_home_space_card_baseinfo_bottom($member, $get)
  626.     {
  627.     }
  628.     public function hook_discuz_home_space_card_option($member, $get)
  629.     {
  630.     }
  631.     public function hook_discuz_home_space_card_magic_user($member, $get)
  632.     {
  633.     }
  634.     public function hook_discuz_home_space_card_bottom($member, $get)
  635.     {
  636.     }
  637.     public function hook_discuz_home_space_blog_comment_op($value, $member, $get)
  638.     {
  639.     }
  640.     public function hook_discuz_home_space_blog_comment_bottom($member, $get)
  641.     {
  642.     }
  643.     public function hook_discuz_home_space_doing_top($member, $get)
  644.     {
  645.     }
  646.     public function hook_discuz_home_space_doing_bottom($member, $get)
  647.     {
  648.     }
  649.     public function hook_discuz_home_space_favorite_nav_extra($member, $get)
  650.     {
  651.     }
  652.     public function hook_discuz_home_space_interaction_extra($member, $get)
  653.     {
  654.     }
  655.     public function hook_discuz_home_global_usernav_extra1($member, $get)
  656.     {
  657.     }
  658.     public function hook_discuz_home_global_usernav_extra2($member, $get)
  659.     {
  660.     }
  661.     public function hook_discuz_home_space_home_side_top($member, $get)
  662.     {
  663.     }
  664.     public function hook_discuz_home_space_home_side_bottom($member, $get)
  665.     {
  666.     }
  667.     public function hook_discuz_home_space_home_top($member, $get)
  668.     {
  669.     }
  670.     public function hook_discuz_home_space_home_navlink($member, $get)
  671.     {
  672.     }
  673.     public function hook_discuz_home_space_home_bottom($member, $get)
  674.     {
  675.     }
  676.     public function hook_discuz_home_magic_nav_extra($member, $get)
  677.     {
  678.     }
  679.     public function hook_discuz_home_medal_nav_extra($member, $get)
  680.     {
  681.     }
  682.     public function hook_discuz_home_space_menu_extra($member, $get)
  683.     {
  684.     }
  685.     public function hook_discuz_home_space_profile_baseinfo_top($member, $get)
  686.     {
  687.     }
  688.     public function hook_discuz_home_follow_profile_baseinfo_top($member, $get)
  689.     {
  690.     }
  691.     public function hook_discuz_home_space_profile_baseinfo_middle($member, $get)
  692.     {
  693.     }
  694.     public function hook_discuz_home_follow_profile_baseinfo_middle($member, $get)
  695.     {
  696.     }
  697.     public function hook_discuz_home_space_profile_baseinfo_bottom($member, $get)
  698.     {
  699.     }
  700.     public function hook_discuz_home_follow_profile_baseinfo_bottom($member, $get)
  701.     {
  702.     }
  703.     public function hook_discuz_home_space_profile_extrainfo($member, $get)
  704.     {
  705.     }
  706.     public function hook_discuz_home_follow_profile_extrainfo($member, $get)
  707.     {
  708.     }
  709.     public function hook_discuz_home_space_home_doing_sync_method($member, $get)
  710.     {
  711.     }
  712.     public function hook_discuz_home_space_wall_face_extra($member, $get)
  713.     {
  714.     }
  715.     public function hook_discuz_member_logging_side_top($member, $get)
  716.     {
  717.     }
  718.     public function hook_discuz_member_logging_top($member, $get)
  719.     {
  720.     }
  721.     public function hook_discuz_member_logging_input($member, $get)
  722.     {
  723.     }
  724.     public function hook_discuz_member_logging_method($member, $get)
  725.     {
  726.     }
  727.     public function hook_discuz_member_global_login_extra($member, $get)
  728.     {
  729.     }
  730.     public function hook_discuz_member_register_side_top($member, $get)
  731.     {
  732.     }
  733.     public function hook_discuz_member_register_top($member, $get)
  734.     {
  735.     }
  736.     public function hook_discuz_member_register_input($member, $get)
  737.     {
  738.     }
  739.     public function hook_discuz_member_register_logging_method($member, $get)
  740.     {
  741.     }
  742.     public function hook_discuz_member_register_bottom($member, $get)
  743.     {
  744.     }
  745.     public function hook_discuz_portal_portalcp_top($member, $get)
  746.     {
  747.     }
  748.     public function hook_discuz_portal_portalcp_extend($member, $get)
  749.     {
  750.     }
  751.     public function hook_discuz_portal_portalcp_middle($member, $get)
  752.     {
  753.     }
  754.     public function hook_discuz_portal_portalcp_bottom($member, $get)
  755.     {
  756.     }
  757.     public function hook_discuz_portal_view_article_top($member, $get)
  758.     {
  759.     }
  760.     public function hook_discuz_portal_view_article_subtitle($member, $get)
  761.     {
  762.     }
  763.     public function hook_discuz_portal_view_article_summary($member, $get)
  764.     {
  765.     }
  766.     public function hook_discuz_portal_view_article_content($member, $get)
  767.     {
  768.     }
  769.     public function hook_discuz_portal_view_share_method($member, $get)
  770.     {
  771.     }
  772.     public function hook_discuz_portal_view_article_op_extra($member, $get)
  773.     {
  774.     }
  775.     public function hook_discuz_portal_view_article_side_top($member, $get)
  776.     {
  777.     }
  778.     public function hook_discuz_portal_view_article_side_bottom($member, $get)
  779.     {
  780.     }
  781.     public function hook_discuz_search_album_top($member, $get)
  782.     {
  783.     }
  784.     public function hook_discuz_search_album_bottom($member, $get)
  785.     {
  786.     }
  787.     public function hook_discuz_search_blog_top($member, $get)
  788.     {
  789.     }
  790.     public function hook_discuz_search_blog_bottom($member, $get)
  791.     {
  792.     }
  793.     public function hook_discuz_search_global_footer($member, $get)
  794.     {
  795.     }
  796.     public function hook_discuz_search_global_footerlink($member, $get)
  797.     {
  798.     }
  799.     public function hook_discuz_search_forum_top($member, $get)
  800.     {
  801.     }
  802.     public function hook_discuz_search_forum_bottom($member, $get)
  803.     {
  804.     }
  805.     public function hook_discuz_search_group_top($member, $get)
  806.     {
  807.     }
  808.     public function hook_discuz_search_group_bottom($member, $get)
  809.     {
  810.     }
  811.     public function hook_discuz_search_global_usernav_extra1($member, $get)
  812.     {
  813.     }
  814.     public function hook_discuz_search_global_usernav_extra2($member, $get)
  815.     {
  816.     }
  817.     public function hook_discuz_search_portal_top($member, $get)
  818.     {
  819.     }
  820.     public function hook_discuz_search_portal_bottom($member, $get)
  821.     {
  822.     }
  823.     public function hook_discuz_userapp_userapp_app_top($member, $get)
  824.     {
  825.     }
  826.     public function hook_discuz_userapp_userapp_app_bottom($member, $get)
  827.     {
  828.     }
  829.     public function hook_discuz_userapp_userapp_index_top($member, $get)
  830.     {
  831.     }
  832.     public function hook_discuz_userapp_userapp_index_bottom($member, $get)
  833.     {
  834.     }
  835.     public function hook_discuz_userapp_userapp_menu_top($member, $get)
  836.     {
  837.     }
  838.     public function hook_discuz_userapp_userapp_menu_middle($member, $get)
  839.     {
  840.     }
復制代碼





歡迎光臨 新秀網絡驗證系統 (http://www.5566wy.com/) Powered by Discuz! X3.5