Line 17... |
Line 17... |
17 |
// | |
|
17 |
// | |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
22 |
// CVS : $Id: bazar.fonct.rss.php,v 1.89 2007-09-18 07:38:43 alexandre_tb Exp $
|
22 |
// CVS : $Id: bazar.fonct.rss.php,v 1.90 2007-09-28 13:39:15 jp_milcent Exp $
|
23 |
/**
|
23 |
/**
|
24 |
*
|
24 |
*
|
25 |
*@package bazar
|
25 |
*@package bazar
|
26 |
//Auteur original :
|
26 |
//Auteur original :
|
27 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
27 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
28 |
*@author Florian Schmitt <florian@ecole-et-nature.org>
|
28 |
*@author Florian Schmitt <florian@ecole-et-nature.org>
|
29 |
//Autres auteurs :
|
29 |
//Autres auteurs :
|
30 |
*@copyright Tela-Botanica 2000-2006
|
30 |
*@copyright Tela-Botanica 2000-2006
|
31 |
*@version $Revision: 1.89 $
|
31 |
*@version $Revision: 1.90 $
|
32 |
// +------------------------------------------------------------------------------------------------------+
|
32 |
// +------------------------------------------------------------------------------------------------------+
|
33 |
*/
|
33 |
*/
|
Line 34... |
Line 34... |
34 |
|
34 |
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
Line 304... |
Line 304... |
304 |
$res .= '</ul></span>'."\n";
|
304 |
$res .= '</ul></span>'."\n";
|
305 |
}
|
305 |
}
|
306 |
$res .= '<div class="BAZ_bulle_corps BAZ_bulle_corps_'.$GLOBALS['_BAZAR_']['class'].'">'."\n";
|
306 |
$res .= '<div class="BAZ_bulle_corps BAZ_bulle_corps_'.$GLOBALS['_BAZAR_']['class'].'">'."\n";
|
307 |
$res .= '<div class="BAZ_infos_fiche BAZ_infos_fiche_'.$GLOBALS['_BAZAR_']['class'].'">'."\n";
|
307 |
$res .= '<div class="BAZ_infos_fiche BAZ_infos_fiche_'.$GLOBALS['_BAZAR_']['class'].'">'."\n";
|
308 |
$res .= '<span class="BAZ_nb_vues BAZ_nb_vues_'.$GLOBALS['_BAZAR_']['class'].'">'.BAZ_NB_VUS.$ligne['bf_nb_consultations'].BAZ_FOIS.'</span><br />'."\n";
|
308 |
$res .= '<span class="BAZ_nb_vues BAZ_nb_vues_'.$GLOBALS['_BAZAR_']['class'].'">'.BAZ_NB_VUS.$ligne['bf_nb_consultations'].BAZ_FOIS.'</span><br />'."\n";
|
- |
|
309 |
|
309 |
//affichage du redacteur de la fiche
|
310 |
//affichage du redacteur de la fiche
|
310 |
$requete = 'SELECT '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.', '.BAZ_CHAMPS_EMAIL.
|
311 |
$requete = 'SELECT '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.', '.BAZ_CHAMPS_EMAIL.
|
311 |
' FROM '.BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$ligne['bf_ce_utilisateur'];
|
312 |
' FROM '.BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$ligne['bf_ce_utilisateur'];
|
312 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
313 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
313 |
if (DB::isError($resultat)) {
|
314 |
if (DB::isError($resultat)) {
|
314 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
315 |
die ($resultat->getMessage().$resultat->getDebugInfo()) ;
|
315 |
}
|
316 |
}
|
316 |
while ($redacteur = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
317 |
while ($redacteur = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
- |
|
318 |
$res .= BAZ_FICHE_NUMERO.$GLOBALS['_BAZAR_']['id_fiche'].BAZ_ECRITE;
|
- |
|
319 |
if (!defined(BAZ_FICHE_REDACTEUR_MAIL) || BAZ_FICHE_REDACTEUR_MAIL) {
|
317 |
$res .= BAZ_FICHE_NUMERO.$GLOBALS['_BAZAR_']['id_fiche'].BAZ_ECRITE.'<a href="mailto:'.$redacteur[BAZ_CHAMPS_EMAIL].'">'.$redacteur[BAZ_CHAMPS_PRENOM].' '.$redacteur[BAZ_CHAMPS_NOM].'</a><br />'."\n";
|
320 |
$res .= '<a href="mailto:'.$redacteur[BAZ_CHAMPS_EMAIL].'">'.$redacteur[BAZ_CHAMPS_PRENOM].' '.$redacteur[BAZ_CHAMPS_NOM].'</a>';
|
- |
|
321 |
} else {
|
- |
|
322 |
$res .= $redacteur[BAZ_CHAMPS_PRENOM].' '.$redacteur[BAZ_CHAMPS_NOM];
|
- |
|
323 |
}
|
- |
|
324 |
$res .= '<br />'."\n";
|
318 |
}
|
325 |
}
|
Line 319... |
Line 326... |
319 |
|
326 |
|
320 |
//informations complementaires (id fiche, etat publication,... )
|
327 |
//informations complementaires (id fiche, etat publication,... )
|
321 |
if ($danslappli==1) {
|
328 |
if ($danslappli==1) {
|
Line 1203... |
Line 1210... |
1203 |
}
|
1210 |
}
|
Line 1204... |
Line 1211... |
1204 |
|
1211 |
|
1205 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
1212 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
1206 |
*
|
1213 |
*
|
- |
|
1214 |
* $Log: not supported by cvs2svn $
|
- |
|
1215 |
* Revision 1.89 2007-09-18 07:38:43 alexandre_tb
|
- |
|
1216 |
* ajout de la constante BAZ_AFFICHER_FILTRE_MOTEUR pour enlever le choix du type de fiche dans le moteur de recherche.
|
1207 |
* $Log: not supported by cvs2svn $
|
1217 |
*
|
1208 |
* Revision 1.88 2007-08-27 12:32:14 alexandre_tb
|
1218 |
* Revision 1.88 2007-08-27 12:32:14 alexandre_tb
|
1209 |
* suppression de un notice
|
1219 |
* suppression de un notice
|
1210 |
*
|
1220 |
*
|
1211 |
* Revision 1.87 2007-07-05 08:27:35 alexandre_tb
|
1221 |
* Revision 1.87 2007-07-05 08:27:35 alexandre_tb
|