############################################################## ## MOD Title: Forum Clock ## MOD Author: Drumstix42 < Drumstix42@aol.com > (Mark Schlitz) http://www.advancedmod.com ## MOD Description: This MOD will add a simple Flash clock to your ## forums. Tested on 2.0.5 and 2.0.6. Should work ## on previous version as well. ## MOD Version: 1.0.2 ## ## Installation Level: Easy ## Installation Time: 2-5 Minutes ## Files To Edit: index_body.tpl ## ## Included Files: Clock.swf ############################################################## ## 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 very simple MOD to add a Flash clock to the ## bottom of your forums in no time. It uses the person's ## computer's clock time, so no configuration is ## neccessary. It works on 2.0.5 and 2.0.6. Should work ## fine on just about any version since it's just HTML ## code overall. Also, will work with most templates, ## you just need to know the classes for borders and ## backgrounds if wanted. ## ## For a preview, check out my forums at: ## http://www.advancedmod.com/forums/ ## And scroll down to the bottom. ## ## Enjoy! ############################################################## ## MOD History: ## ## 2003-08-11 - Version 1.0.0 ## - Clock working fine. No changes needed. ## 2003-09-13 - Version 1.0.1 ## - Updated to use the $lang system, adding 2 new steps. ## 2003-09-14 - Version 1.0.2 ## - Updated step one adding 'copy ' to the begining, correcting ## the previous invalid syntax. ## ############################################################## ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD ############################################################## # #-----[ COPY ]------------------------------------------ #Just goes in your main /phpBB2/ folder. # copy Clock.swf to Clock.swf # #-----[ OPEN ]------------------------------------------ # templates/subSilver/index_body.tpl # #-----[ FIND ]------------------------------------------ # {L_ONLINE_EXPLAIN} # #-----[ AFTER, ADD ]------------------------------------------ #
{CLOCK_NAME}
# #-----[ OPEN ]------------------------------------------ # includes/page_header.php # #-----[ FIND ]------------------------------------------ # 'SITE_DESCRIPTION' => $board_config['site_desc'], # #-----[ AFTER, ADD ]------------------------------------------ # 'CLOCK_NAME' => $lang['clock_name'], # #-----[ OPEN ]------------------------------------------ # language/lang_english/lang_main.php # #-----[ FIND ]------------------------------------------ # // // That's all, Folks! // ------------------------------------------------- # #-----[ BEFORE, ADD ]------------------------------------------ # $lang['clock_name'] = 'Clock'; # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM