Scris: 01-Noi-2006, 15:45:23
nu ma ajuta nimeni
(?

forumul phpBB in limba romana. Opinii, implementari, ajutor, instructiuni si download.
https://phpbb3.ro/community/
Ce bine ar fi daca ai primi totul mura-n gura nu ?Berti scrie:Multumesc pentru raspuns!
Nu s-ar putea face publica? Cred ca sunt multi utilizatori care ar fi interesati de ea!
Cod: Selectaţi tot
#################################################################
## Mod Title: Links
## Mod Version: 1.0.2
## Author: R. U. Serious <r> - www.handykoelsch.de
##
## Description: This MOD adds a link list to your site.
## Admins can add categories. Everybody can add links and
## assign them to one (or more) categories. Also every User
## can manage their own private favorites.
##
## Installation Level: (easy)
## Installation Time: 5 Minutes
## Files To Edit: page_header.php, overall_header.tpl, lang_main.php
## Included Files: links.php,
## links_body.tpl,
## link_editcat.tpl,
## link_editurl.tpl,
## install_links_db.php
## links_schema.sql,
## update_from090.sql
## german_lang.txt,
##############################################################
## This MOD is released under the GPL License.
## Intellectual Property is retained by the MOD Author(s) listed above
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ 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/downloads/
#################################################
## Version History:
## 1.0.2 - Fixed some minor things in instructions and style.
## 1.0.1 - Fixed another Lost Session Bug
## changes all lang-variables to be phpBB-compliant
## added support for tableprefix
## 1.0.0 - Fixed Lost Session Bug
## Cleaned up Language & template stuff
## (improved template thanks to nexialys from http://mx-system.com/ )
## 0.9.2 - Added BBCode Support
## Added Rearranging of Links (in edit-category)
## Fixed Bug that un-hidden categories were not shown
## small fixes
## (DB-Change and minor template changes)
## 0.9.0 - First Release
##
#################################################################
##
## Author Note:
## This mod is good to use on smaller or medium sized boards.
## It has only been tested with mysql so far.
## Make the appropiate changes to your database
## (run install_links_db.php from your main phpBB-directory).
## If you don't have any category, you will receive errormessages. The
## last 3 lines add an example category/link to my site. I'd be happy
## if you'd let the link to my site in there :-)
##
## Put links.php in your main phpBB-directory.
## Put *.tpl in templates/subSilver/
##
## This basically uses the colors of your style, except for the navigation
## bar on the left. Edit the color values in links_body.tpl to suite your needs.
##
## There are a few "switches" which are explained. Look in links.php
## They are for anonymous adding links, BBcode enable, default-category etc.
## AT LEAST CHECK THE DEFAULT CATEGORY; YOU WILL GET ERROR MSG IF IT
## DOES NOT EXIST!
##
## =================> IF YOU ARE UPDATING: <Replace> $lang['Memberlist'],
#
#-----[ AFTER, ADD ]------------------------------------------
#
'L_LINKS' => $lang['Links'],
#
#-----[ FIND ]------------------------------------------
#
'U_MEMBERLIST' => append_sid('memberlist.'.$phpEx),
#
#-----[ AFTER, ADD ]------------------------------------------
#
'U_LINKS' => append_sid('links.'.$phpEx),
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/overall_header.tpl
#
#-----[ FIND ]------------------------------------------
#
# somewhere around line 236
<BEGIN>
#
#-----[ BEFORE, ADD ]------------------------------------------
#
<a href="{U_LINKS}" class="mainmenu"><img>{L_LINKS}</a>
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
//
// That's all Folks!
// -------------------------------------------------
#
#-----[ AFTER, ADD ]------------------------------------------
#
$lang['Links']='Links';
$lang['show_all']='All';
$lang['my_urls']='Favorites';
$lang['lost_links']='Lost Links';
$lang['cat_c']='Category(s)';
$lang['url_c']='Link(s)';
$lang['add_cat'] = 'New Category';
$lang['edit_cat'] = 'Edit Category';
$lang['del_cat'] = 'Delete Category';
$lang['add_url'] = 'New Link';
$lang['edit_url'] = 'Edit Link';
$lang['del_url'] = 'Delete Link';
$lang['cat'] = 'Name of Category';
$lang['url'] = 'URL/Address of Site';
$lang['pos'] = 'Position:';
$lang['hide_cat'] = 'Hide Category?';
$lang['url_name'] = 'Name of Site';
$lang['url_desc'] = 'Decription/Commentary to Website';
$lang['Sorry_auth'] = 'You are not authorized';
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM