MOD Description: this mod change board header more users friendy.
MOD Version: Alpha: 0.1.0
MOD Download: files in topic
Screen Shout: http://img64.imageshack.us/img64/7077/0005yv8.png
Code: Select all
##############################################################
## MOD Title: phpbb3 header optimation
## MOD Author: yakusha < n/a > http://www.phpbbturkiye.net
## MOD Description: this mod change board header more users friendy
## MOD Version: 0.1.0
##
## Installation Level: Easy
## Installation Time: 1 minutes
## Files To Edit: (2)
## overall_header.html
## overall_footer.html
## Included Files: n/a
## License: Open Source :)
##############################################################
## 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/
##############################################################
## Author Notes:
## n/a yet :)
##
##############################################################
## MOD History:
##
## 2007-04-23 - Version 0.1.0
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
overall_header.html
#
#-----[ FIND ]------------------------------------------
#
<a name="start_here"></a>
<div id="page-body">
<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) -->
<div id="message" class="rules">
<div class="inner"><span class="corners-top"><span></span></span>
<strong>{L_INFORMATION}:</strong> {L_BOARD_DISABLED}
<span class="corners-bottom"><span></span></span></div>
</div>
<!-- ENDIF -->
#
#-----[ REPLACE WITH ]------------------------------------------
#
<a name="start_here"></a>
<div id="page-body">
<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) -->
<div id="message" class="rules">
<div class="inner"><span class="corners-top"><span></span></span>
<strong>{L_INFORMATION}:</strong> {L_BOARD_DISABLED}
<span class="corners-bottom"><span></span></span>
</div>
</div>
<!-- ENDIF -->
<ul class="linklist">
<li>
<a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a> • <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a>
<!-- IF S_USER_LOGGED_IN --> • <a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><!-- ENDIF -->
</li>
<!-- IF S_USER_LOGGED_IN and not S_IS_BOT -->
<li class="rightside"><!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}<!-- ELSE -->{CURRENT_TIME}<!-- ENDIF --></li>
<!-- ENDIF -->
</ul>
#
#-----[ OPEN ]------------------------------------------
#
index_body.html
#
#-----[ FIND ]------------------------------------------
#
<!-- INCLUDE overall_header.html -->
<p class="right<!-- IF U_MCP --> rightside<!-- ENDIF -->"><!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}<!-- ELSE -->{CURRENT_TIME}<!-- ENDIF --></p>
<!-- IF U_MCP --><p> [ <a href="{U_MCP}">{L_MCP}</a> ]</p><!-- ENDIF -->
<ul class="linklist">
<li><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a><!-- IF S_USER_LOGGED_IN --> • <a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><!-- ENDIF --> • <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a></li>
<!-- IF S_USER_LOGGED_IN and not S_IS_BOT --><li class="rightside"><a href="{U_MARK_FORUMS}" accesskey="m">{L_MARK_FORUMS_READ}</a></li><!-- ENDIF -->
</ul>
<!-- INCLUDE forumlist_body.html -->
#
#-----[ REPLACE WITH ]------------------------------------------
#
<!-- INCLUDE overall_header.html -->
<ul class="linklist">
<li><!-- IF U_MCP -->[ <a href="{U_MCP}">{L_MCP}</a> ]<!-- ENDIF --></li>
<!-- IF S_USER_LOGGED_IN and not S_IS_BOT --><li class="rightside"><a href="{U_MARK_FORUMS}" accesskey="m">{L_MARK_FORUMS_READ}</a></li><!-- ENDIF -->
</ul>
<!-- INCLUDE forumlist_body.html -->
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM