[ABD] Staff List MOD

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment! No new topics are allowed in this forum.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: MOD Development Forum rules

On February 1, 2009 this forum will be set to read only as part of retiring of phpBB2.
=cipher=
Registered User
Posts: 587
Joined: Sat Feb 12, 2005 9:15 pm
Location: A Network Near You
Contact:

[ABD] Staff List MOD

Post by =cipher= »

Greetings,

I have just finished making a Staff List page on our site, and decided to make it a small MODification for phpBB Websites.

Features:
:arrow: List of all Administrators and Moderators
:arrow: Shows Admins and Mods Avatars
:arrow: Shows Posts
:arrow: Shows Joined Date
:arrow: Shows Email Buttons, IM Buttons, and Website button

Future Features:
:arrow: Mini Biography
:arrow: When Joined Staff Team

Version: 1.0.0
Demo: here
Download: [here]

MOD File / Install Text:
##############################################################
## MOD Title: staff_list MOD
## MOD Author: Cipher < N/A > (N/A) http://www.thetechbase.com/
## MOD Description: This MOD pulls the correct user information from your Database to output and create a new page. This new page is a list of all your Administrators and Moderators.
## MOD Version: 1.0.0
##
## Installation Level: (Easy)
## Installation Time: 5-10 Minutes
## Files To Edit:
## language/lang_main.php
## viewonline.php
## admin/index.php
## includes/constants.php
## template/subSilver/overall_header.tpl
## Included Files: staff_list.php
## staff_index.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:
## - This is a great simple MOD to keep track of your staff on your forums. Also ## makes people aware of all staff members.
## - To get full support on this mod, please visit us at http://www.thetechbase.com
##############################################################
## MOD History:
##
## 2005-05-14 - Version 0.0.1
## - First Version of Staff List MOD
##
## 2005-05-15 - Version 0.0.6
## - Second Version of Staff List MOD with some key fixes in it.
##
## 2005-05-16 - Version 1.0.0
## - First official Release of Staff List MOD with some more key fixes. Added some ## language variables, page constants, and also fixed viewonline portion.
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

#
#-----[ COPY ]------------------------------------------
#
#
staff_list.php to staff_list.php
staff_index.tpl to templates/subSilver/staff_index.tpl
copy *.* to templates/subSilver/

#
#-----[ OPEN ]------------------------------------------
#
admin/index.php
#
#-----[ FIND ]------------------------------------------
#
case PAGE_FAQ:
$location = $lang['Viewing_FAQ'];
$location_url = "index.$phpEx?pane=right";
#
#-----[ AFTER, ADD ]------------------------------------------
#
case PAGE_STAFF:
$location = $lang['Staff'];
$location_url = "staff_list.$phpEx?pane=right";
break;
#
#-----[ FIND ]------------------------------------------
#
case PAGE_FAQ:
$location = $lang['Viewing_FAQ'];
$location_url = "index.$phpEx?pane=right";
break;
#
#-----[ AFTER, ADD ]------------------------------------------
#
case PAGE_STAFF:
$location = $lang['Staff'];
$location_url = "staff_list.$phpEx?pane=right";
break;
#
#-----[ OPEN ]------------------------------------------
#
includes/constants.php
#
#-----[ FIND ]------------------------------------------
#
define('PAGE_GROUPCP', -11);
#
#-----[ AFTER, ADD ]------------------------------------------
#
define('PAGE_STAFF', -2045);
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
# Around line 166
$lang['Moderators'] = 'Moderators';
#
#-----[ AFTER, ADD ]------------------------------------------
#
$lang['Staff'] = 'Staff List';
#
#-----[ FIND ]------------------------------------------
# Around line 855
$lang['Viewing_Download'] = 'Viewing Download';
#
#-----[ AFTER, ADD ]------------------------------------------
#
$lang['Viewing_Staff'] = 'Viewing Staff List';
#
#-----[ OPEN ]------------------------------------------
#
viewonline.php
#
#-----[ FIND ]------------------------------------------
#
case PAGE_FAQ:
$location = $lang['Viewing_FAQ'];
$location_url = "faq.$phpEx";
break;
#
#-----[ AFTER, ADD ]------------------------------------------
#
case PAGE_STAFF:
$location = $lang['Viewing_Staff'];
$location_url = "staff_list.$phpEx";
break;
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/overall_header.tpl
#
#-----[ FIND ]------------------------------------------
#
<td align="center" valign="top" nowrap="nowrap"><span class="mainmenu"> <a href="{U_FAQ}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a></span>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<td align="center" valign="top" nowrap="nowrap"><span class="mainmenu"> <a href="/staff_list.php" class="mainmenu">Staff List</a></span>
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Last edited by =cipher= on Thu May 19, 2005 3:54 pm, edited 1 time in total.
Best Regards:
Aaron McGowan / =cipher=

Status: Coding / Programming
Head Programmer for The Tech Base
Junior Programmer for Triplentry Solutions
Thatbitextra
Former Team Member
Posts: 7604
Joined: Mon Mar 21, 2005 5:04 am
Location: A place where something is or could be located; a site.
Contact:

Post by Thatbitextra »

Styles KB
My MODs: Choose Who to Accept PMs From (Prevents unwanted PMs!) | Warn of Old Topic Before Posting Reply
Style: subBlack (Now updated to phpBB 2.0.22 and 5 new color schemes!)
=cipher=
Registered User
Posts: 587
Joined: Sat Feb 12, 2005 9:15 pm
Location: A Network Near You
Contact:

Post by =cipher= »

Hello,

Yes I know. But, I like to create things also. And after I finished developing version 1, I noticed the other Staff List MOD. Sorry. :cry: Mine is also at phpBB Hacks - http://phpbbhacks.com/download/5102 :D
Best Regards:
Aaron McGowan / =cipher=

Status: Coding / Programming
Head Programmer for The Tech Base
Junior Programmer for Triplentry Solutions
User avatar
SupremeWeapon
Registered User
Posts: 593
Joined: Mon Feb 17, 2003 12:48 pm
Location: Battle Creek, Mi
Contact:

Post by SupremeWeapon »

howa bou tif you changed yours around a bit. made it acp configurable where admins can allow site staff (not admins but other peopl ein a user group) to create a sort of "bio" on this staff page. like it would have there name and forum info but if you clicked there name you were taken to there bio with a image of them.



i havent seen that yet. and that woul dbe a real staff page for phpBB.
Image
=cipher=
Registered User
Posts: 587
Joined: Sat Feb 12, 2005 9:15 pm
Location: A Network Near You
Contact:

Post by =cipher= »

Hey,

Yuppers. That is what I am working towards :D Please hold off on this as this will take me a bit. But it will soon be done! :D Please register at www.thetechbase.com for futther help and details. :D Also, if you have any more suggestions, let me know! :D
Best Regards:
Aaron McGowan / =cipher=

Status: Coding / Programming
Head Programmer for The Tech Base
Junior Programmer for Triplentry Solutions
User avatar
bonelifer
Community Team Member
Community Team Member
Posts: 3542
Joined: Wed Oct 27, 2004 11:35 pm
Name: William
Contact:

Post by bonelifer »

Another big plus for this mod is that the OTHER MOD is not EasyMod friendly, while this ONE IS.
William Jacoby - Community Team
Knowledge Base | phpBB Board Rules | Search Customisation Database
Please don't contact me via PM or email for phpBB support .
=cipher=
Registered User
Posts: 587
Joined: Sat Feb 12, 2005 9:15 pm
Location: A Network Near You
Contact:

Post by =cipher= »

:D :!:
Best Regards:
Aaron McGowan / =cipher=

Status: Coding / Programming
Head Programmer for The Tech Base
Junior Programmer for Triplentry Solutions
=cipher=
Registered User
Posts: 587
Joined: Sat Feb 12, 2005 9:15 pm
Location: A Network Near You
Contact:

Post by =cipher= »

Does anyone have anyother suggestions?
Best Regards:
Aaron McGowan / =cipher=

Status: Coding / Programming
Head Programmer for The Tech Base
Junior Programmer for Triplentry Solutions
Swizec
Former Team Member
Posts: 1701
Joined: Mon Mar 10, 2003 9:42 pm
Location: Slovenia
Contact:

Post by Swizec »

display date when joined staff team
=cipher=
Registered User
Posts: 587
Joined: Sat Feb 12, 2005 9:15 pm
Location: A Network Near You
Contact:

Post by =cipher= »

Ok :D Thanks. I will work on these things for the next release. Until then, I would like to get my MOD validated and put the phpBB Site so I am making a few corrections.

The things that will be on the next version are:
:arrow: Mini Biography
:arrow: When Joined Staff Team
Best Regards:
Aaron McGowan / =cipher=

Status: Coding / Programming
Head Programmer for The Tech Base
Junior Programmer for Triplentry Solutions
User avatar
bonelifer
Community Team Member
Community Team Member
Posts: 3542
Joined: Wed Oct 27, 2004 11:35 pm
Name: William
Contact:

Post by bonelifer »

It should show the Forums a Moderator moderates. If it's an Admin, it shouldn't, since they can moderate all forums.
William Jacoby - Community Team
Knowledge Base | phpBB Board Rules | Search Customisation Database
Please don't contact me via PM or email for phpBB support .
=cipher=
Registered User
Posts: 587
Joined: Sat Feb 12, 2005 9:15 pm
Location: A Network Near You
Contact:

Post by =cipher= »

Great Idea.
Best Regards:
Aaron McGowan / =cipher=

Status: Coding / Programming
Head Programmer for The Tech Base
Junior Programmer for Triplentry Solutions
User avatar
vrflyer
Registered User
Posts: 503
Joined: Mon Feb 17, 2003 8:27 pm

Post by vrflyer »

Demo link & D/L = Teh 404! :P
Always Under Construction !
User avatar
yexusbeliever
Registered User
Posts: 586
Joined: Mon Dec 08, 2003 8:49 pm
Location: Olympus phpBB3

Post by yexusbeliever »

Can not download this mod either!

No demo and no mod.
Kirsty1
Registered User
Posts: 237
Joined: Tue Aug 30, 2005 9:50 pm
Location: New Zealand
Contact:

Post by Kirsty1 »

Any update for this? :)
Locked

Return to “[2.0.x] MODs in Development”