[SPIP Zone] r4264 - in /_plugins_/_email_/spip_listes: exec/abonne_edit.php exec/listes_toutes.php exec/spip_listes.php inc/affichage.php

Author: booz@rezo.net
Date: Sat Jul 29 21:30:03 2006
New Revision: 4264

Log:
prefixage des fonctions

Modified:
    _plugins_/_email_/spip_listes/exec/abonne_edit.php
    _plugins_/_email_/spip_listes/exec/listes_toutes.php
    _plugins_/_email_/spip_listes/exec/spip_listes.php
    _plugins_/_email_/spip_listes/inc/affichage.php

Modified: _plugins_/_email_/spip_listes/exec/abonne_edit.php

--- _plugins_/_email_/spip_listes/exec/abonne_edit.php (original)
+++ _plugins_/_email_/spip_listes/exec/abonne_edit.php Sat Jul 29 21:30:03 2006
@@ -179,7 +179,7 @@

}

-afficher_en_liste(_T('spiplistes:abonne_listes'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'abonnements', '', '', 'position') ;
+spiplistes_afficher_en_liste(_T('spiplistes:abonne_listes'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'abonnements', '', '', 'position') ;

Modified: _plugins_/_email_/spip_listes/exec/listes_toutes.php

--- _plugins_/_email_/spip_listes/exec/listes_toutes.php (original)
+++ _plugins_/_email_/spip_listes/exec/listes_toutes.php Sat Jul 29 21:30:03 2006
@@ -127,15 +127,15 @@
// lettres d'infos
//

-afficher_en_liste(_T('spiplistes:listes_internes'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'articles', 'inact', '', 'position') ;
+spiplistes_afficher_en_liste(_T('spiplistes:listes_internes'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'articles', 'inact', '', 'position') ;

-afficher_en_liste(_T('spiplistes:liste_diff_publiques'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'articles', 'liste', '', 'position') ;
+spiplistes_afficher_en_liste(_T('spiplistes:liste_diff_publiques'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'articles', 'liste', '', 'position') ;

-afficher_en_liste(_T('spiplistes:listes_poubelle'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'articles', 'poublist', '', 'position') ;
+spiplistes_afficher_en_liste(_T('spiplistes:listes_poubelle'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'articles', 'poublist', '', 'position') ;

// MODE EDIT LISTES FIN --------------------------------------------------------

Modified: _plugins_/_email_/spip_listes/exec/spip_listes.php

--- _plugins_/_email_/spip_listes/exec/spip_listes.php (original)
+++ _plugins_/_email_/spip_listes/exec/spip_listes.php Sat Jul 29 21:30:03 2006
@@ -102,11 +102,11 @@

$messages_vus = '';

-afficher_en_liste(_T('spiplistes:aff_encours'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'messages', 'encour', '', 'position') ;
+spiplistes_afficher_en_liste(_T('spiplistes:aff_encours'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'messages', 'encour', '', 'position') ;

-afficher_en_liste(_T('spiplistes:aff_redac'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'messages', 'redac', '', 'position') ;
+spiplistes_afficher_en_liste(_T('spiplistes:aff_redac'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'messages', 'redac', '', 'position') ;

@@ -200,10 +200,10 @@
echo "<br /><br />";

-afficher_en_liste(_T('spiplistes:messages_auto_envoye'),'../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'messages', 'auto', '', 'position') ;
+spiplistes_afficher_en_liste(_T('spiplistes:messages_auto_envoye'),'../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'messages', 'auto', '', 'position') ;

-afficher_en_liste(_T('spiplistes:aff_envoye'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'messages', 'publie', '', 'position') ;
+spiplistes_afficher_en_liste(_T('spiplistes:aff_envoye'), '../'._DIR_PLUGIN_SPIPLISTES.'/img_pack/stock_mail.gif', 'messages', 'publie', '', 'position') ;

Modified: _plugins_/_email_/spip_listes/inc/affichage.php

--- _plugins_/_email_/spip_listes/inc/affichage.php (original)
+++ _plugins_/_email_/spip_listes/inc/affichage.php Sat Jul 29 21:30:03 2006
@@ -118,7 +118,7 @@
}

/**
- * afficher_en_liste
+ * spiplistes_afficher_en_liste
    *
    * affiche des listes d'éléments
    *
@@ -130,7 +130,7 @@
    * @return string la liste des lettres pour le statut demandé
    * @author BoOz / Pierre Basson
    **/
- function afficher_en_liste($titre, $image, $element='articles', $statut, $recherche='', $nom_position='position') {
+ function spiplistes_afficher_en_liste($titre, $image, $element='articles', $statut, $recherche='', $nom_position='position') {
     
     global $pas, $id_auteur;
     $position = intval($_GET[$nom_position]);