MOD phpBB - Onglets sur l’Index 1.1.1
MOD
- Titre original : Index Tabbed
- Auteur : Saske1
- Co-Auteur : leviatan21
- Version : 1.1.1
- Sujet officiel : Cliquez !
- Description : Connexion, Qui est en ligne?, Anniversaires et Statistiques dans un système d’onglets
Traduction Française
- Auteur : darky
- Version : 1.0.1
- Notes : Si vous avez des suggestions concernant mes traductions, merci de me les faire parvenir par MP !
Installation
- Difficulté : Facile
- Durée : ~ 15 minutes
- Compatibilité selon l’auteur : Phpbb 3.0.9
- Testé et fonctionnel sur : Phpbb 3.0.9
- Styles : Prosilver
- Procédure : Ouvrez le fichier index_tables_1_1_1\install.xml
- Contribution française : Ouvrez le fichier index_tables_1_1_1\contrib\fr.xml
Screenshot
ACP
Prosilver
ACP
Prosilver
Mises à jour
- 1.1.0 à 1.1.1 : Ouvrez le fichier index_tables_1_1_1\contrib\update 1.1.0 to 1.1.1.xml
Add-On
- Affiliates in tabs : Ouvrez le fichier index_tables_1_1_1\contrib\[Add-On] Affiliates in tabs.xml
- Ajax Statistics : Ouvrez le fichier index_tables_1_1_1\contrib\[Add-On] Ajax Statistics.xml
- NV Who Was Here : Ouvrez le fichier index_tables_1_1_1\contrib\[Add-On] NV Who Was Here.xml
- Statistics on Index : Ouvrez le fichier index_tables_1_1_1\contrib\[Add-On] Statistics on Index.xml
- Ultimate Points : Ouvrez le fichier index_tables_1_1_1\contrib\[Add-On] Ultimate Points.xml
Astuces
Comment ajouter un nouvel onglet ?
Ouvrir : styles/prosilver/template/index_tabbed.html
Trouver :
- Code : Tout sélectionner
- var panels_index = new Array('login-panel', 'online-panel', 'birthday-panel', 'statistics-panel'
Dans la ligne, trouver :
- Code : Tout sélectionner
- 'statistics-panel'
Ajouter après :
- Code : Tout sélectionner
- , 'new-panel'
Trouver :
- Code : Tout sélectionner
- <!-- IF NEWEST_USER -->
- <li class="" id="statistics-panel-tab"><a name="statistics" href="#statistics-panel" onclick="subpanels_index('statistics-panel'); return false;"><span>{L_STATISTICS}</span></a></li>
- <!-- ENDIF -->
Ajouter après :
- Code : Tout sélectionner
- <li class="" id="new-panel-tab"><a name="new" href="#new-panel" onclick="subpanels_index('statistics-panel'); return false;"><span>{L_NEW}</span></a></li>
Trouver :
- Code : Tout sélectionner
- <!-- IF NEWEST_USER -->
- <div id="statistics-panel" style="display: none;">
- <h3>{L_STATISTICS}</h3>
- <p>{TOTAL_POSTS} • {TOTAL_TOPICS} • {TOTAL_USERS} • {NEWEST_USER}</p>
- </div>
- <!-- ENDIF -->
Ajouter après :
- Code : Tout sélectionner
- <div id="new-panel" style="display: none;">
- Votre code ici
- </div>
darky.