[推薦][外掛]Categories hierarchy (子分區)

MODs Released by Other phpbb Sites
非官方認證通過之 MOD ,或許有安全性之疑慮,所有問題由原發表者回覆!

版主: 版主管理群

主題已鎖定
ernie
星球公民
星球公民
文章: 73
註冊時間: 2003-07-24 16:56
聯繫:

[推薦][外掛]Categories hierarchy (子分區)

文章 ernie »

外掛作者:Ptirhiik
作者的網站:http://www.rpgnet-fr.com
主程式下載頁:http://www.rpgnet-fr.com/demo/viewtopic.php?t=264
支援phpBB版本: 2.0.6/2.0.5/2.0.4

Demo:http://www.rpgnet-fr.com/demo/index.php
拉到下面有一個Some links 和 Test zone 的地方可以點看看

檔頭\r

代碼: 選擇全部

############################################### 
## MOD Title: Categories hierarchy
## MOD Author: Ptirhiik < admin@rpgnet-fr.com > (Pierre) http://www.rpgnet-fr.com
## MOD Description:
##		This mod allows to attach a categorie to a higher level categorie,
##		keeping all the forum visible on the index page (vBulletin-like view),
##		or have a sub-forum view
##
## MOD Version: 2.0.0
## 
## Installation Level: Moderate
## Installation Time: 120 Minutes
## Files To Edit:
##		index.php
##		modcp.php
##		posting.php
##		search.php
##		viewforum.php
##		viewonline.php
##		viewtopic.php
##
##		admin/admin_forum_prune.php
##		admin/admin_forumauth.php
##		admin/admin_forums.php
##		admin/admin_ug_auth.php
##
##		includes/functions.php
##		includes/page_header.php
##		includes/topic_review.php
##
##		language/lang_english/lang_admin.php
##		language/lang_english/lang_main.php
##
##		templates/subSilver/index_body.tpl
##		templates/subSilver/modcp_body.tpl
##		templates/subSilver/modcp_move.tpl
##		templates/subSilver/modcp_split.tpl
##		templates/subSilver/posting_body.tpl
##		templates/subSilver/search_body.tpl
##		templates/subSilver/subSilver.cfg
##		templates/subSilver/viewforum_body.tpl
##		templates/subSilver/viewtopic_body.tpl
##
##		templates/subSilver/admin/auth_ug_body.tpl
##		templates/subSilver/admin/category_edit_body.tpl
##		templates/subSilver/admin/forum_admin_body.tpl
##		templates/subSilver/admin/forum_delete_body.tpl
##		templates/subSilver/admin/forum_edit_body.tpl
##
## Included Files:
##		mod_categories_hierarchy.php
##		index_box.tpl
##
##		cat_folder_big.gif
##		cat_folder_new_big.gif
##		cat_folder_locked_big.gif
##		icon_minicat.gif
##		icon_minicat_new.gif
##		icon_minicat_lock.gif
##		icon_minilink.gif
##		icon_minipost_lock.gif
##		link_folder.gif
##
##		functions_mods_settings.php
##		admin_board_extend.php
##		board_config_extend_body.tpl
##
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/ 
############################################################## 
##
## Author Notes: 
##
##	v 2 features :
##		o attachment
##			- attach a category to another category
##			- attach a category to a forum
##			- optional : attach a forum to a forum, or to the index (note this one will
##				break slightly the data compliancy with a non-modded phpBB)
##
##		o forum type link management :
##			this allows you to set a link displayed as a forum, and suiting the users
##			view authorisations. You can choose in the acp whether you want to count
##			the number of hits or not.
##
##		o multi-language support in forums and cats name and description :
##			allow to use $lang[] key entry in the categories or forums name and
##			description in order to fit the language choosen by the user.
##
##		o order cats and forums as you want
##			You can now choose the order of appearance of the categories on the index page,
##			and mix categories and forums order.
##
##		o 3 choices of packing index
##			- No pack, giving the full incremental tree of cats and forums,
##			- Medium pack : the precs version sub-forum views : 2 levels displayed
##			- Full pack : Only one level is displayed.
##
##		o optional display of board statistics
##			The board statistics box can be removed from the root index, or from all,
##			reducing more the size of the index pages.
##
##		o split of the categories on the root index page
##			For a better seen of the board section.
##
##		o quick links under description (based on tidjojo and Gilgraf one)
##			You can display the name and links to the direct sub-level, and also
##			have the new message icon present in front of this name.
\n##
##		o show the last topic title on index (based on e-sven's one)
##			You can display on the index the title of the topics last created
##			or replied to in the "Last Post" column.
##
##		o admin interface for setting the display options
##			Part of the mod settings mod, included in this mod
##
##		o users can choose their prefered setup (required full mods settings mod to be installed).
##			Admin can also choose to override the users choice for each setup parameter.
##
##
##	- About compliancy issue with original phpBB data structure while using real sub-forums feature :
##	Version 2.0.x of phpBB accept only a forum to be attached to a category. The mod can allow if you wish
## to attach a forum to another forum, or to the index. Such an attachment won't be recognized by original phpBB
## progs, and so the forum won't be displayed at all, or will be seen attached to a category having the same id
## that the parent forum : this is only a display issue, and won't impact posts or authorisations, nothing will
## be lost :). If you plan to remove the mod, just re-attach the sub-forums to a category, and all we'll be ok.
##
##	- to use real sub-forums feature : 
##		just run the SQL statement on forums table, pointed as optional.
##		SQL statements on categories table are NOT optional.
##
##
##	This mod can be installed using Nutzzy's EasyMOD v 0.0.10a ( http://phpbb.com/phpBB/viewtopic.php?t=125071 ),
##	on a phpBB 2.0.4, 2.0.5 and 2.0.6
## 
############################################################## 
## MOD History: 
## 
##   2003-08-19 - Version 2.0.0
##	- support of multi-language forums and categories name and description
##	- add forum link type feature
##      - add the ability to attach a category to a forum
##	- add the ability (optional) to attach a forum to a forum
##	- add the ability to mix the sort of categories and forums at the same level
##	- add another level of packing the index (full packing)
##	- add the prec extension "last topic title on index" as an option to the base version
##	- add the prec enhancement "links to sub-level on description" as an option to the base version
##	- redesign of the forums and categories reading
##	- add the ability to split categories on index
##	- add the ability to remove within the acp the who's online box at different level
##	- more friendly admin forums and cats administration (ACP)
##	- admin interface for setting the display
##	- users preferences interface with mods settings mod (included in the pack)
##
##   2003-04-09 - Version 1.1.0
##   2003-03-24 - Version 1.0.9
##   2003-03-05 - Version 1.0.8
##   2003-03-01 - Version 1.0.7
##   2003-02-21 - Version 1.0.6
##   2003-02-21 - Version 1.0.5
##   2003-01-15 - Version 1.0.2
##   2003-01-05 - Version 1.0.1
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
###############################################
這是我看到不同於之前竹貓上面的子分區,
我用一個下午的時間裝好,發現非常好用。

但是非常的.....嗯....難裝,安裝時要非常小心,
建議MOD新手不要輕易嘗試。

主要功能:
1. 在一個「看板」裡面可以放置最多三個「子看板」。
2. 在一個「分類」裡面可以再放一個分類,成為一個「子分類」,底下可以放N多個「子看板」。
3. 可以把一個「看板」變成一個連結,並且可以計算點閱次數。

這個外掛會改到非常多檔案,也就是說有一些其他的外掛要小心調整。
就我碰到的如fineprint、公告條的地方就要稍微調整一下位置,
而縮放討論區就沒辦法用只好把他移除了。

已知問題:
子看板如果超過三個的話版子會不見,要去db救回來。

解決方式:

到db裡面(建議使用phpMyAdmin),
在phpbb_forums 中找到消失的看板,
將它的cat_id 改成其他已存在的cat_id


推薦一個好MOD給大家 :-D


在下做了幾張風格的圖片分享給大家
subGreen
圖檔圖檔圖檔
subRebel
圖檔圖檔圖檔
subRed
圖檔圖檔圖檔
subSilver
圖檔圖檔圖檔

希望你會喜歡!

p.s. 因為等不及phpbb2.2所以我就先裝了
MOD說明檔建議留下來做以後更新至phpbb2.2時參考
最後由 ernie 於 2003-08-27 18:55 編輯,總共編輯了 1 次。
Mowd
竹貓忠實會員
竹貓忠實會員
文章: 326
註冊時間: 2002-06-26 01:17
來自: 台北
聯繫:

文章 Mowd »

這個功能是很不錯,但是建議要更新的人先看這邊一下,
在phpbb2.2出來以後,會有子分區的功能,而且不限制子分區的版面。
所以請要安裝這支Mod的人請三思,因為安裝了這個以後想必以後要升級phpbb2.2會有一些困難(例如資料庫的格式等...),所以不建議沒有迫切需要的人安裝這個Mod。
主題已鎖定

回到「非官方認證外掛」