Code: Alles auswählen
############################################################## 
## MOD Title: Supercharged Album Pack 1
## MOD Author: Volodymyr (CLowN) Skoryk 
## MOD Description: 
##   A series of modification for Album version 2 by Smartor ( http://smartor.is-root.com ) 
##
## MOD Includes:
##	-Random pictures on album index
##	-Highest rated pictures on album index
##	-Searching of album & personal album
##	-smilies enabled
##	-comments, rating, smilies box on same page
##	-improved layout of comments
##	-added messenger buttons, avatar, pm, email buttons to comments page
##	-custumizing looks and settings from admin pannel
##	-hot or not page
##	-watermark
##	-mid thumbnail
##      -other misc improvements
## 
## MOD Version: 1.5.1
## MOD Release Date: 01.18.04 12:46:09 am
## 
## MOD Requirements:  Album version 2 by Smartor ( http://smartor.is-root.com ) 
## 
## Installation Level: easy 
## Installation Time: 4 minutes 
## 
## Files To Edit: 2
##  viewonline.php
##  admin/index.php
##
## Files To Delete: 7
##	album_rate.php
##	album_page.php
##	album_comment.php
##	templates/ YOUR TEMPLET HERE /album_rate_body.tpl
##	templates/ YOUR TEMPLET HERE /album_comment_body.tpl
##	templates/ YOUR TEMPLET HERE /album_cat_body.tpl
##	templates/ YOUR TEMPLET HERE /album_index_body.tpl
##	
## Included Files: 30
##	album.php
##	album_cat.php
##	album_comment_edit.php
##	album_comment_delete.php
##	album_hotornot.php
##	album_personal.php
##	album_personal_index.php
##	album_pic.php
##	album_picm.php
##      album_search.php
##	album_showpage.php
##	sp_db_install.php
##	sp_db_install_fix.php
##	admin/admin_album_clown_SP.php
##	album_mod/album_common.php
##	album_mod/album_constants.php
##	album_mod/album_functions.php
##	album_mod/clown_album_functions.php
##	album_mod/mark.png
##	album_mod/rank.gif
##	templates/ YOUR TEMPLET HERE /admin/album_clown_sp_body.tpl
##	templates/ YOUR TEMPLET HERE /album_cat_body.tpl
##	templates/ YOUR TEMPLET HERE /album_comment_body.tpl
##	templates/ YOUR TEMPLET HERE /album_hon.tpl
##	templates/ YOUR TEMPLET HERE /album_index_body.tpl
##	templates/ YOUR TEMPLET HERE /album_personal_body.tpl
##	templates/ YOUR TEMPLET HERE /album_personal_index_body.tpl
##	templates/ YOUR TEMPLET HERE /album_posting_smilies.tpl
##	templates/ YOUR TEMPLET HERE /album_search_body.tpl
##	templates/ YOUR TEMPLET HERE /album_showpage_body.tpl
##
##
## MOD Preconditon: Comment and Rating system MUST be enabled in Admin Panel, and "View full pic as a popup" must be set to "No".
## 
## MOD Copyrights: Volodymyr (CLowN) Skoryk © 2003 - 2004
##		   Original Watermark code & continuous pictures mod © Luciano 2003
##		   Highest Rated Pictures code @ MarkFulton.com
## 		  		 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD (including SQL Database) 
############################################################## 
#
############################################################## 
##   This hack is released under the GPL License.
##   This hack can be freely used, but not distributed, without permission.
##   Intellectual Property is retained by the hack author(s) listed above.
############################################################## 
# 
#-----[ OPEN ]------------------------------------------------------- 
# 
viewonline.php
# 
#-----[ FIND ]------------------------------------------------------- 
# 
				case PAGE_ALBUM:
					$location = $lang['Album'];
					$location_url = "album.$phpEx";
					break;
# 
#-----[ REPLACE WITH ]------------------------------------------------------- 
# 
				case PAGE_ALBUM:
					$location = "Album Index";
					$location_url = "album.$phpEx";
					break;
				case PAGE_ALBUM_PERSONAL:
					$location = "Viewing Personal Album of a user";
					$location_url = "album_personal_index.$phpEx";
					break;
				case PAGE_ALBUM_PICTURE:
					$location = "Viewing Pictures or Posting/Reading comments in the Album";
					$location_url = "album_showpage.$phpEx";
					break;
				case PAGE_ALBUM_SEARCH:
					$location = "Searching the Album";
					$location_url = "album_search.$phpEx";
					break;
#
#-----[ OPEN ]-------------------------------------------------------
#
admin/index.php
#
#-----[ FIND ]----------------------------------------
#
				case PAGE_ALBUM:
					$location = $lang['Album'];
					$location_url = "album.$phpEx?pane=right";
					break;
#
#-----[ REPLACE WITH ]----------------------------------
#
				case PAGE_ALBUM:
					$location = "Album Index";
					$location_url = "album.$phpEx?pane=right";
					break;
				case PAGE_ALBUM_PERSONAL:
					$location = "Viewing Personal Album of a user";
					$location_url = "album_personal_index.$phpEx?pane=right";
					break;
				case PAGE_ALBUM_PICTURE:
					$location = "Viewing Pictures or Posting/Reading comments in the Album";
					$location_url = "album_showpage.$phpEx?pane=right";
					break;
				case PAGE_ALBUM_SEARCH:
					$location = "Searching the Album";
					$location_url = "album_search.$phpEx?pane=right";
					break;
# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------------------- 
# 
#
#-----[ DELETE FILES ]------------------------------------------------------- 
#
	now delete the files listed above
#
#-----[ COPY FILES ]------------------------------------------------------- 
#
	now take all included files and paste them in you phpbb directory
#
#-----[ RUN INSTALL FILE ]------------------------------------------------------- 
#
	now run sp_db_install.php ... after your done, delete the file
	now run sp_db_install_fix.php ... after your done, delete the file
#
############################################################## 
# EoF 
##############################################################Code: Alles auswählen
## EasyMod 0.0.11 compliant
## ##############################################################
## MOD Title: Album Category Hierarchy
## 
## MOD Author: IdleVoid < idlevoid@slater.dk > (N/A) N/A
## 
## MOD Description: With this mod its possible to create sub categories in public galleries as well in personal galleries.
##                  There is an administration control panel to control several aspects of the mod.
##                  The mod is compatible with the Super Charged Pack version 1.5.1. by CLowN
##                  This mod is based on the Category/Forum Hierarchy Mod by Ptirhiik, so alot of credit should go to him.