
Director Link-uri
-
- Utilizator înregistrat
- Mesaje: 29
- Membru din: 12-Mar-2006, 10:13:32
- Ext: Nu
- Server: Windows
- Nivel phpBB: Mediu
- Nivel php: Mediu
- Contact:
Ne poate ajuta cineva din conducere cu fisierele pentru MOD-ul de linkuri identic cu cel de pe acest forum.
Link Manager Mod-ul specificat de Aliniuz difera cu mult fata de cel de aici:
- coloana cu categoriile variaza in latime total aiurea, in functie de dimensiunea descrierii linkurilor
- nu apare numarul de link-uri dintr-o categorie
- nu apare numele user-ul care a adaugat link-ul
- nu apare box-ul cu link-uri recente
Astea-s diferentele pe care l-am remarcat la prima vedere... mai sunt cateva, dar nu merita amintite!
Va multumesc!
Link Manager Mod-ul specificat de Aliniuz difera cu mult fata de cel de aici:
- coloana cu categoriile variaza in latime total aiurea, in functie de dimensiunea descrierii linkurilor
- nu apare numarul de link-uri dintr-o categorie
- nu apare numele user-ul care a adaugat link-ul
- nu apare box-ul cu link-uri recente
Astea-s diferentele pe care l-am remarcat la prima vedere... mai sunt cateva, dar nu merita amintite!
Va multumesc!
- Aliniuz
- Fost coleg
- Mesaje: 3629
- Membru din: 19-Mai-2006, 08:06:42
- Ext: Nu
- Server: Windows
- Nivel phpBB: Mediu
- Nivel php: Mediu
- Localitate: Galati
- Contact:
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!

Mi se pare firesc ca munca depusa la personalizarea acestui MOD sa fie accesata numai de cei care au contribuit .
Si sa stii ca nu e greu sa personalizezi un anumit lucru , poti incerca si tu sa umbli prin acele fisiere din arhiva sa faci ceva si mai si decat ce a facut phpBB.ro . Asta tine de mentalitate ...

- HeLLioN
- Utilizator înregistrat
- Mesaje: 227
- Membru din: 06-Iul-2006, 13:49:19
- Versiune: 3.0.5
- Ext: Da
- Server: UNIX/Linux
- Nivel phpBB: Mediu
- Localitate: ITALIA
- Contact:
pai nu imi arata nimica
care sunt ele ?:) nu trebuia sa arata ceva de genul ---------SQL-------- si dedesupt comenzile ?:)

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
Un Nimeni Celebru ...
Cine este conectat
Utilizatori ce ce navighează pe acest forum: Niciun utilizator înregistrat și 1 vizitator