Code (Sélectionner le code)
/******************************************************************************* * Template Mod :: version 0.0.1 * * ---------- Auteur -------------------------------------------------------- * Auteur :: Babacooll * Email :: mich.mg@skynet.be * Site Web :: http://www.poudlard-interactif.net * * ---------- Mod ----------------------------------------------------------- * Nom :: Dernière Visite * Version :: 0.0.1 * Compatible :: FSB BETA1b * * Description :: Mod permettant d'afficher la date de la dernière visite * dans le profil public * * Temps d'installation :: 2 minutes * Requètes :: Non * Cache :: Non * Fichiers joins :: 0 * Fichiers à modifier :: 3 * * ---------- Note ---------------------------------------------------------- * Facile à installer * * ---------- Historique ---------------------------------------------------- * Commencé :: Le 17 / 09 / 2004 * Dernière modification :: Le 17 / 10 / 2004 * * Le 17 / 09 / 2004 :: * Première version du MOD * *******************************************************************************/ # # [1] ---------- ouvrir -------------------------------------------------------- # profil_public.php # # [2] ---------- chercher ------------------------------------------------------ # 'L_INSCRIT' => $langue['inscrit_le'], # # [3] ---------- après, ajouter ------------------------------------------------ # 'L_DERNIERE_VISITE' => $langue['derniere_visite'], # # [4] ---------- chercher ------------------------------------------------------ # 'INSCRIT' => aff_date($donnees['date_enregistrement']), # # [5] ---------- après, ajouter ------------------------------------------------ # 'DERNIERE_VISITE' => aff_date($donnees['derniere_visite']), # # [6] ---------- ouvrir -------------------------------------------------------- # themes/IceCold/profil_public_corps.tpl # # [7] ---------- chercher ------------------------------------------------------ # <tr> <td width="200"><span class="b">{L_INSCRIT}:</span></td> <td>{INSCRIT}</td> </tr> # # [8] ---------- après, ajouter ------------------------------------------------ # <tr> <td width="200"><span class="b">{L_DERNIERE_VISITE}:</span></td> <td>{DERNIERE_VISITE}</td> </tr> # # [9] ---------- ouvrir -------------------------------------------------------- # langues/fr/langue_forum.php # # [10] ---------- chercher ----------------------------------------------------- # $langue['autorisation'] = 'Autorisation'; # # [11] ---------- après, ajouter ----------------------------------------------- # $langue['derniere_visite'] = 'Derniere Visite';
BaB'





