[Mtdmods-checkins] SF.net SVN: mtdmods: [18] GroupMembersPageMOD/contrib/install.mod
Brought to you by:
markthedaemon
|
From: <mar...@us...> - 2006-07-02 02:42:10
|
Revision: 18 Author: markthedaemon Date: 2006-07-01 19:42:04 -0700 (Sat, 01 Jul 2006) ViewCVS: http://svn.sourceforge.net/mtdmods/?rev=18&view=rev Log Message: ----------- Modified Paths: -------------- GroupMembersPageMOD/contrib/install.mod Modified: GroupMembersPageMOD/contrib/install.mod =================================================================== --- GroupMembersPageMOD/contrib/install.mod 2006-07-02 02:40:51 UTC (rev 17) +++ GroupMembersPageMOD/contrib/install.mod 2006-07-02 02:42:04 UTC (rev 18) @@ -1,105 +1,86 @@ -################################################################# +############################################################## ## MOD Title: Group Members Page -## MOD Author: I'm Only 16 < n/a > ( n/a ) n/a -## MOD Author: MarkTheDaemon < n/a> (n/a) n/a +## MOD Author: MarkTheDaemon < mar...@us... > (Mark Barnes) http://mtdmods.sourceforge.net +## MOD Author: I'm Only 16 < N/A > (N/A) N/A ## MOD Description: This modification will add a new page to your forum listing groups and their members in a memberlist kind of style. ## MOD Version: 0.1.0 -## +## ## Installation Level: Easy -## Installation Time: 3 Minutes -## Files To Edit: includes/page_header.php -## language/lang_english/lang_main.php -## templates/subSilver/overall_header.tpl -## Included Files: root/groups.php -## root/templates/subSilver/groups_list_body.tpl -## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 +## Installation Time: 5 minutes +## Files To Edit: includes/page_header.php +## language/lang_english/lang_main.php +## templates/subSilver/overall_header.tpl +## Included Files: upload/groups.php +## upload/templates/subSilver/groups_list_body.tpl +## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 +## Generator: MOD Studio [ ModTemplateTools 1.0.2288.38406 ] ############################################################## ## For security purposes, please check: http://www.phpbb.com/mods/ ## for the latest version of this MOD. Although MODs are checked ## before being allowed in the MODs Database there is no guarantee ## that there are no security problems within the MOD. No support ## will be given for MODs not found within the MODs Database which -## can be found at http://www.phpbb.com/mods/ +## can be found at http://www.phpbb.com/mods/ ############################################################## -## Author Notes: N/A -## +## Author Notes: MOD taken over by me (MarkTheDaemon) after the old author got banned at phpBB.com ############################################################## -## MOD History: -## -## 2006-05-18 - Version 0.1.0 -## - Stable Release -## -################################################################# -## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD -################################################################# +## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD +############################################################## # #-----[ COPY ]------------------------------------------ # -copy root/groups.php to groups.php -copy root/templates/subSilver/groups_list_body.tpl to templates/subSilver/groups_list_body.tpl - +copy upload/groups.php to groups.php +copy upload/templates/subSilver/groups_list_body.tpl to templates/subSilver/groups_list_body.tpl # #-----[ OPEN ]------------------------------------------ # includes/page_header.php - # #-----[ FIND ]------------------------------------------ # -'L_WHOSONLINE_MOD' => - +'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'), # #-----[ AFTER, ADD ]------------------------------------------ # - 'L_GROUP_MEMBERS' => $lang['GROUP_LISTING']['L_GROUP_LIST'], - - 'U_GROUP_MEMBERS' => append_sid("groups.$phpEx"), - +'L_GROUP_MEMBERS' => $lang['L_GROUP_LIST'], +'U_GROUP_MEMBERS' => append_sid("groups.$phpEx"), # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_main.php - # #-----[ FIND ]------------------------------------------ # // // That's all, Folks! // ------------------------------------------------- - # #-----[ BEFORE, ADD ]------------------------------------------ # -// Group member listing lang -$lang['GROUP_LISTING'] = array( - 'L_GROUP_LIST' => 'Group Members', - 'L_MOD_ABOUT' => 'About', - 'L_MOD_ABOUT_F' => 'Group member listing mod by <a href="http://mtdmods.sourceforge.net">MarkTheDaemon</a>', - 'L_GROUP_MOD' => 'Group Moderator', -); +'L_GROUP_LIST' => 'Group Members'; +'L_MOD_ABOUT' => 'About'; +'L_MOD_ABOUT_F' => 'Group member listing mod by <a href="http://mtdmods.sourceforge.net">MarkTheDaemon</a>'; +'L_GROUP_MOD' => 'Group Moderator'; # #-----[ OPEN ]------------------------------------------ # templates/subSilver/overall_header.tpl - # #-----[ FIND ]------------------------------------------ # +# Partial find, line is much longer <a href="{U_PRIVATEMSGS}" class="mainmenu"> - # #-----[ IN-LINE FIND ]------------------------------------------ # <a href="{U_PRIVATEMSGS} - # #-----[ IN-LINE BEFORE, ADD ]------------------------------------------ # <a href="{U_GROUP_MEMBERS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_groups.gif" width="12" height="13" border="0" alt="{L_GROUP_MEMBERS}" hspace="3" />{L_GROUP_MEMBERS}</a> - # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # -# EoM \ No newline at end of file +# EoM This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |