查看: 12|回复: 0

discuz 插件钩子 调用解析

[复制链接]

121

主题

12

回帖

996万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
9968920
威望
0
金币
9968706
鲜花(0) 鸡蛋(0)
发表于 2024-9-9 09:21:41 | 显示全部楼层 |阅读模式
模板中插件嵌入点,有时候做模板的时候不小心把嵌入点删除了,或者做圆角布局没修改好等都会的导致插件使用中出现问题。


插件钩子代码例子:
  1. <!--{hook/xxx_xxx}-->
复制代码


插件钩子的作用在于能让插件在指定的一些位置输出有关代码,在制作Discuz模板的时候一定要参考默认模板中的插件钩子位置进行合理的安排!

下面是Discuz x2.5 模板文件中的插件钩子(插件嵌入点)列表:

一、全局(common/)
  1. extcredits.htm
  2.      string spacecp_credit_extra
  3. faq.htm
  4.      string faq_extra
  5. footer.htm
  6.      string global_footer
  7.      string global_footerlink
  8. header.htm
  9.      string global_cpnav_top (X2.5)
  10.      string global_cpnav_extra1
  11.      string global_cpnav_extra2
  12.      string global_usernav_extra1
  13.      string global_usernav_extra2
  14.      string global_usernav_extra3
  15.      string global_usernav_extra4 (X2.5)
  16.      string global_nav_extra (X2.5)
  17.      string global_header
  18. userabout.htm
  19.      array global_userabout_top
  20.      string userapp_menu_top
  21.      string userapp_menu_middle
  22.      array global_userabout_bottom
复制代码


二、论坛(forum/)
  1. collection_all.htm (X2.5)
  2.      string collection_index_top
  3.      string collection_index_bottom
  4. collection_comment.htm (X2.5)
  5.      string collection_nav_extra
  6. collection_index.htm (X2.5)
  7.      string collection_index_top
  8.      string collection_index_bottom
  9. collection_mycollection.htm (X2.5)
  10.      string collection_index_top
  11.      string collection_index_bottom
  12. collection_nav.htm (X2.5)
  13.      string collection_nav_extra
  14. collection_view.htm (X2.5)
  15.      string collection_viewoptions
  16.      string collection_view_top
  17.      string collection_threadlistbottom
  18.      string collection_relatedop
  19.      string collection_view_bottom
  20.      string collection_side_bottom
  21. discuz.htm
  22.      string index_status_extra
  23.      string index_nav_extra (X2.5)
  24.      string index_top
  25.      string index_catlist_top (X2.5)
  26.      array index_favforum_extra (X2.5)
  27.      array index_catlist (X2.5)
  28.      array index_forum_extra (X2.5)
  29.      array index_forum_extra (X2.5)
  30.      string index_middle
  31.      string index_bottom
  32.      string index_side_top
  33.      string index_side_bottom
  34. discuzcode.htm
  35.      array viewthread_attach_extra (X2.5)
  36. editor_menu_forum.htm
  37.      string post_image_btn_extra
  38.      string post_image_tab_extra
  39.      string post_attach_btn_extra
  40.      string post_attach_tab_extra
  41. forumdisplay.htm
  42.      string forumdisplay_leftside_top
  43.      string forumdisplay_leftside_bottom
  44.      string forumdisplay_forumaction
  45.      string forumdisplay_modlink
  46.      string forumdisplay_top
  47.      string forumdisplay_middle
  48.      string forumdisplay_postbutton_top
  49.      string forumdisplay_threadtype_inner (X2.5)
  50.      string forumdisplay_filter_extra (X2.5)
  51.      string forumdisplay_threadtype_extra (X2.5)
  52.      string forumdisplay_bottom
  53.      string forumdisplay_side_top
  54.      string forumdisplay_side_bottom
  55. forumdisplay_fastpost.htm
  56.      string forumdisplay_fastpost_content
  57.      string forumdisplay_fastpost_func_extra
  58.      string forumdisplay_fastpost_ctrl_extra
  59.      string global_login_text
  60.      string forumdisplay_fastpost_btn_extra
  61.      string forumdisplay_fastpost_sync_method
  62. forumdisplay_list.htm
  63.      string forumdisplay_filter_extra
  64.      array forumdisplay_thread
  65.      array forumdisplay_thread_subject (X2.5)
  66.      array forumdisplay_author
  67.      array forumdisplay_thread (X2.5)
  68.      array forumdisplay_author (X2.5)
  69.      string forumdisplay_threadlist_bottom (X2.5)
  70.      string forumdisplay_postbutton_bottom
  71. forumdisplay_sort.htm (X2.5)
  72.      string forumdisplay_postbutton_bottom
  73. forumdisplay_subforum.htm (X2.5)
  74.      array forumdisplay_subforum_extra
  75.      array forumdisplay_subforum_extra
  76. guide.htm
  77.      string guide_nav_extra
  78.      string guide_top
  79.      string guide_bottom
  80. guide_list_row.htm (X2.5)
  81.      array forumdisplay_thread
  82. index_navbar.htm
  83.      string index_navbar
  84. post.htm
  85.      string post_top
  86.      string post_middle
  87.      string post_btn_extra
  88.      string post_sync_method
  89.      string post_bottom
  90. post_activity.htm
  91.      string post_activity_extra
  92. post_debate.htm
  93.      string post_debate_extra
  94. post_editor_body.htm
  95.      string post_editorctrl_right
  96.      string post_editorctrl_left
  97.      string post_editorctrl_top
  98.      string post_editorctrl_bottom
  99. post_editor_option.htm
  100.      string post_side_top
  101.      string post_side_bottom
  102. post_infloat.htm
  103.      string post_infloat_top
  104.      string post_infloat_middle
  105.      string post_infloat_btn_extra
  106. post_poll.htm
  107.      string post_poll_extra
  108. post_reward.htm
  109.      string post_reward_extra
  110. post_trade.htm
  111.      string post_trade_extra
  112. topicadmin_modlayer.htm
  113.      string forumdisplay_modlayer
  114.      string modcp_modlayer
  115. trade_info.htm
  116.      string viewthread_tradeinfo_extra
  117. viewthread.htm
  118.      string viewthread_top
  119.      string viewthread_postbutton_top
  120.      string viewthread_modoption
  121.      string viewthread_beginline (X2.5)
  122.      string viewthread_title_extra
  123.      string viewthread_title_row
  124.      string viewthread_middle
  125.      string viewthread_bottom
  126. viewthread_activity.htm
  127.      string viewthread_activity_extra1
  128.      string viewthread_activity_extra2
  129. viewthread_fastpost.htm
  130.      string viewthread_fastpost_side
  131.      string viewthread_fastpost_content
  132.      string viewthread_fastpost_func_extra
  133.      string viewthread_fastpost_ctrl_extra
  134.      string global_login_text
  135.      string viewthread_fastpost_btn_extra (X2.5)
  136. viewthread_from_node.htm
  137.      array viewthread_postheader
  138.      array viewthread_postheader
  139.      array viewthread_postheader
  140.      array viewthread_endline
  141. viewthread_node.htm
  142.      array viewthread_profileside
  143.      array viewthread_imicons
  144.      array viewthread_magic_user
  145.      array viewthread_avatar
  146.      array viewthread_sidetop
  147.      array viewthread_sidebottom
  148.      array viewthread_postheader
  149.      string viewthread_modaction (X2.5)
  150.      string viewthread_share_method
  151.      string viewthread_useraction
  152.      array viewthread_postsightmlafter (X2.5)
  153.      array viewthread_postfooter
  154.      array viewthread_postaction (X2.5)
  155.      string viewthread_magic_thread
  156.      array viewthread_magic_post
  157.      array viewthread_endline
  158. viewthread_node_body.htm
  159.      array viewthread_posttop
  160.      string global_login_text
  161.      array viewthread_postbottom
  162. viewthread_poll.htm
  163.      string viewthread_poll_top
  164.      string viewthread_poll_bottom
  165. viewthread_portal.htm
  166.      string viewthread_useraction_prefix
  167.      string viewthread_useraction
  168.      string viewthread_side_bottom
  169. viewthread_trade.htm
  170.      array viewthread_trade_extra
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表