| 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.class.php,v 1.9.2.1 2008-04-16 12:36:27 alexandre_tb Exp $
|
22 |
// CVS : $Id: bazar.class.php,v 1.10 2008-09-17 14:08:45 alexandre_tb 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 |
*@copyright Tela-Botanica 2000-2004
|
29 |
*@copyright Tela-Botanica 2000-2004
|
| 30 |
*@version $Revision: 1.9.2.1 $
|
30 |
*@version $Revision: 1.10 $
|
| 31 |
// +------------------------------------------------------------------------------------------------------+
|
31 |
// +------------------------------------------------------------------------------------------------------+
|
| 32 |
*/
|
32 |
*/
|
| Line 33... |
Line 33... |
| 33 |
|
33 |
|
| 34 |
// +------------------------------------------------------------------------------------------------------+
|
34 |
// +------------------------------------------------------------------------------------------------------+
|
| Line 42... |
Line 42... |
| 42 |
// +------------------------------------------------------------------------------------------------------+
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
| 43 |
// | ENTETE du PROGRAMME |
|
43 |
// | ENTETE du PROGRAMME |
|
| 44 |
// +------------------------------------------------------------------------------------------------------+
|
44 |
// +------------------------------------------------------------------------------------------------------+
|
| Line 45... |
Line 45... |
| 45 |
|
45 |
|
| - |
|
46 |
include_once PAP_CHEMIN_API_PEAR.'PEAR.php';
|
| Line 46... |
Line 47... |
| 46 |
include_once PAP_CHEMIN_API_PEAR.'PEAR.php';
|
47 |
include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazarTemplate.class.php';
|
| Line 47... |
Line 48... |
| 47 |
|
48 |
|
| Line 78... |
Line 79... |
| 78 |
function isSuperAdmin() {
|
79 |
function isSuperAdmin() {
|
| Line 79... |
Line 80... |
| 79 |
|
80 |
|
| 80 |
if(empty($this->_id_utilisateur))
|
81 |
if(empty($this->_id_utilisateur))
|
| Line 81... |
Line 82... |
| 81 |
return FALSE;
|
82 |
return FALSE;
|
| 82 |
|
83 |
|
| Line 83... |
Line 84... |
| 83 |
// On court-circuite si la question a déjà été posé pour ne pas refaire la requete
|
84 |
// On court-circuite si la question a d�j� �t� pos� pour ne pas refaire la requete
|
| 84 |
if (isset ($this->_isSuperAdmin)) return $this->_isSuperAdmin ;
|
85 |
if (isset ($this->_isSuperAdmin)) return $this->_isSuperAdmin ;
|
| Line 85... |
Line 86... |
| 85 |
|
86 |
|
| 86 |
// On court-circuite si l'utilisateur n'est pas logué
|
87 |
// On court-circuite si l'utilisateur n'est pas loggu�
|
| 87 |
if (!$this->_auth->getAuth()) return false ;
|
88 |
if (!$this->_auth->getAuth()) return false ;
|
| Line 101... |
Line 102... |
| 101 |
$this->_isSuperAdmin = false ;
|
102 |
$this->_isSuperAdmin = false ;
|
| 102 |
}
|
103 |
}
|
| 103 |
return $this->_isSuperAdmin;
|
104 |
return $this->_isSuperAdmin;
|
| 104 |
}
|
105 |
}
|
| Line 105... |
Line 106... |
| 105 |
|
106 |
|
| 106 |
/** isAdmin () - Renvoie true si l'utilisateur est administrateur du type de fiche spécifié
|
107 |
/** isAdmin () - Renvoie true si l'utilisateur est administrateur du type de fiche sp�cifi�
|
| 107 |
*
|
108 |
*
|
| 108 |
* @param interger type_annonce Le type de l'annonce
|
109 |
* @param interger type_annonce Le type de l'annonce
|
| 109 |
*
|
110 |
*
|
| Line 110... |
Line 111... |
| 110 |
*/
|
111 |
*/
|
| 111 |
|
112 |
|
| 112 |
function isAdmin($id_nature) {
|
113 |
function isAdmin($id_nature) {
|
| Line 113... |
Line 114... |
| 113 |
// on court-circuite si l'utilisateur n'est pas logué
|
114 |
// on court-circuite si l'utilisateur n'est pas loggu�
|
| 114 |
if (!$this->_auth->getAuth()) return false ;
|
115 |
if (!$this->_auth->getAuth()) return false ;
|
| Line 165... |
Line 166... |
| 165 |
function isSuperAdmin() {
|
166 |
function isSuperAdmin() {
|
| Line 166... |
Line 167... |
| 166 |
|
167 |
|
| 167 |
if(empty($this->_id_utilisateur))
|
168 |
if(empty($this->_id_utilisateur))
|
| Line 168... |
Line 169... |
| 168 |
return false;
|
169 |
return false;
|
| 169 |
|
170 |
|
| Line 170... |
Line 171... |
| 170 |
// On court-circuite si la question a déjà été posé pour ne pas refaire la requete
|
171 |
// On court-circuite si la question a d�j� �t� pos� pour ne pas refaire la requete
|
| 171 |
if (isset ($this->_isSuperAdmin)) return $this->_isSuperAdmin ;
|
172 |
if (isset ($this->_isSuperAdmin)) return $this->_isSuperAdmin ;
|
| 172 |
|
173 |
|
| Line 189... |
Line 190... |
| 189 |
|
190 |
|
| Line -... |
Line 191... |
| - |
|
191 |
}
|
| - |
|
192 |
|
| - |
|
193 |
|
| Line 190... |
Line 194... |
| 190 |
}
|
194 |
|
| Line 191... |
Line 195... |
| 191 |
|
195 |
define ('BAZAR_NOTIFICATION_NOUVELLE_FICHE', 1);
|
| 192 |
|
196 |
define ('BAZAR_NOTIFICATION_MODIFICATION_FICHE', 2);
|
| Line 212... |
Line 216... |
| 212 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
216 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
| 213 |
array_push ($tableau_mail, $ligne[BAZ_CHAMPS_EMAIL]) ;
|
217 |
array_push ($tableau_mail, $ligne[BAZ_CHAMPS_EMAIL]) ;
|
| 214 |
}
|
218 |
}
|
| 215 |
return $tableau_mail;
|
219 |
return $tableau_mail;
|
| 216 |
}
|
220 |
}
|
| - |
|
221 |
|
| - |
|
222 |
/**
|
| - |
|
223 |
* getMailAdmin Renvoie un tableau de mail des super administrateurs
|
| - |
|
224 |
*
|
| - |
|
225 |
* @global DB Un objet DB de PEAR $GLOBALS['_BAZAR_']['db']
|
| - |
|
226 |
*/
|
| - |
|
227 |
function getMailSuperAdmin() {
|
| - |
|
228 |
$requete = 'select '.BAZ_CHAMPS_EMAIL.' from '.BAZ_ANNUAIRE.', bazar_droits ' .
|
| - |
|
229 |
'where bd_niveau_droit="'.BAZ_DROIT_SUPER_ADMINISTRATEUR.'"' .
|
| - |
|
230 |
' and '.BAZ_CHAMPS_ID.'= bd_id_utilisateur';
|
| - |
|
231 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete);
|
| - |
|
232 |
if (DB::isError($resultat)) $this->raiseError();
|
| - |
|
233 |
$tableau_mail = array();
|
| - |
|
234 |
if ($resultat->numRows() == 0) return false;
|
| - |
|
235 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
|
| - |
|
236 |
array_push ($tableau_mail, $ligne[BAZ_CHAMPS_EMAIL]) ;
|
| - |
|
237 |
}
|
| - |
|
238 |
return $tableau_mail;
|
| - |
|
239 |
}
|
| - |
|
240 |
/**
|
| - |
|
241 |
* notifier() envoie un message aux administrateurs
|
| - |
|
242 |
*
|
| - |
|
243 |
* par defaut lors du depot ou de la modification d une fiche
|
| - |
|
244 |
*/
|
| - |
|
245 |
function notifier($type = BAZAR_NOTIFICATION_NOUVELLE_FICHE) {
|
| - |
|
246 |
|
| - |
|
247 |
switch ($type) {
|
| - |
|
248 |
case BAZAR_NOTIFICATION_NOUVELLE_FICHE :
|
| - |
|
249 |
$id_sujet = BAZ_TEMPLATE_MAIL_NOUVELLE_FICHE_SUJET;
|
| - |
|
250 |
$id_corps = BAZ_TEMPLATE_MAIL_NOUVELLE_FICHE_CORPS;
|
| - |
|
251 |
break ;
|
| - |
|
252 |
case BAZAR_NOTIFICATION_MODIFICATION_FICHE :
|
| - |
|
253 |
$id_sujet = BAZ_TEMPLATE_MAIL_MODIFIER_FICHE_SUJET;
|
| - |
|
254 |
$id_corps = BAZ_TEMPLATE_MAIL_MODIFIER_FICHE_CORPS;
|
| - |
|
255 |
break;
|
| - |
|
256 |
}
|
| - |
|
257 |
|
| - |
|
258 |
$template = new bazarTemplate($GLOBALS['_BAZAR_']['db']);
|
| - |
|
259 |
//print ('toto'.$id_sujet);
|
| - |
|
260 |
$sujet = html_entity_decode($template->getTemplate($id_sujet, $GLOBALS['_BAZAR_']['langue'], $GLOBALS['_BAZAR_']['id_typeannonce']));
|
| - |
|
261 |
$corps = html_entity_decode($template->getTemplate($id_corps, $GLOBALS['_BAZAR_']['langue'], $GLOBALS['_BAZAR_']['id_typeannonce']));
|
| - |
|
262 |
|
| - |
|
263 |
$mails = bazar::getMailSuperAdmin($GLOBALS['_BAZAR_']['id_typeannonce']);
|
| - |
|
264 |
if (is_array ($mails)) {
|
| - |
|
265 |
foreach ($mails as $mail) {
|
| - |
|
266 |
mail ($mail, $sujet, $corps);
|
| - |
|
267 |
}
|
| - |
|
268 |
}
|
| - |
|
269 |
}
|
| - |
|
270 |
|
| - |
|
271 |
/** Effectue une requete sur bazar_nature pour remplir diverses
|
| - |
|
272 |
* globales
|
| - |
|
273 |
*
|
| - |
|
274 |
* @global string la globale de langue (ex fr-FR)
|
| - |
|
275 |
* @global int $GLOBALS['_BAZAR_']['id_typeannonce']
|
| - |
|
276 |
*
|
| - |
|
277 |
* @return mixed true ou PEAR_Error
|
| - |
|
278 |
*/
|
| - |
|
279 |
function chargeNature() {
|
| - |
|
280 |
|
| - |
|
281 |
$requete = 'SELECT bn_label_nature, bn_condition, bn_template, bn_commentaire, bn_appropriation, bn_image_titre, bn_image_logo';
|
| - |
|
282 |
$requete .= ' FROM bazar_nature WHERE bn_id_nature = '.$GLOBALS['_BAZAR_']['id_typeannonce'];
|
| - |
|
283 |
if (isset($GLOBALS['_BAZAR_']['langue'])) {
|
| - |
|
284 |
$requete .= ' and bn_ce_i18n like "'.$GLOBALS['_BAZAR_']['langue'].'%"';
|
| - |
|
285 |
}
|
| - |
|
286 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
| - |
|
287 |
if (DB::isError($resultat)) {
|
| - |
|
288 |
return $resultat->getMessage().$resultat->getDebugInfo() ;
|
| - |
|
289 |
}
|
| - |
|
290 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
|
| - |
|
291 |
$GLOBALS['_BAZAR_']['typeannonce']=$ligne['bn_label_nature'];
|
| - |
|
292 |
$GLOBALS['_BAZAR_']['condition']=$ligne['bn_condition'];
|
| - |
|
293 |
$GLOBALS['_BAZAR_']['template']=$ligne['bn_template'];
|
| - |
|
294 |
$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
|
| - |
|
295 |
$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
|
| - |
|
296 |
$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre'];
|
| - |
|
297 |
$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo'];
|
| - |
|
298 |
return true;
|
| - |
|
299 |
}
|
| - |
|
300 |
/** Renvoie un element de formulaire de type select ou radio
|
| - |
|
301 |
* au vue de filtrer les resultats du bazar
|
| - |
|
302 |
* @global mixed $GLOBALS['_BAZAR_']['db'] identifiant de connexion a la bd
|
| - |
|
303 |
*
|
| - |
|
304 |
* @return string html
|
| - |
|
305 |
*/
|
| - |
|
306 |
function getFiltre($numero_liste, $multiple = false, $type = 'select') {
|
| - |
|
307 |
$type == 'select' ? $balise = 'select' : $balise = 'radio' ;
|
| - |
|
308 |
|
| - |
|
309 |
// chargement du template
|
| - |
|
310 |
$tableau_template = baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
|
| - |
|
311 |
|
| - |
|
312 |
$html_filtre = '<select name="bazar_filtre_'.$numero_liste.'" onchange="javascript:this.form.submit();">'."\n";
|
| - |
|
313 |
|
| - |
|
314 |
// Requete dans bazar_liste_valeurs
|
| - |
|
315 |
$requete = 'select blv_valeur, blv_label from bazar_liste_valeurs where blv_ce_liste="'.$numero_liste.'"';
|
| - |
|
316 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete);
|
| - |
|
317 |
|
| - |
|
318 |
if (DB::isError($resultat)) {
|
| - |
|
319 |
return $resultat->getMessage().$resultat->getDebugInfo() ;
|
| - |
|
320 |
}
|
| - |
|
321 |
$html_filtre .= '<option id="filtre_tous" value="*" ';
|
| - |
|
322 |
if (isset($_POST['bazar_filtre_'.$numero_liste]) && '*' == $_POST['bazar_filtre_'.$numero_liste]) {
|
| - |
|
323 |
$html_filtre .= 'selected="selected" ';
|
| - |
|
324 |
}
|
| - |
|
325 |
$html_filtre .= '>'.'Tout afficher'.'</option>';
|
| - |
|
326 |
|
| - |
|
327 |
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT)) {
|
| - |
|
328 |
$html_filtre .= '<option class="filtre_'.$ligne->blv_valeur.'" value="'.$ligne->blv_valeur.'"';
|
| - |
|
329 |
if (isset($_POST['bazar_filtre_'.$numero_liste]) && $ligne->blv_valeur == $_POST['bazar_filtre_'.$numero_liste]) {
|
| - |
|
330 |
$html_filtre .= 'selected="selected" ';
|
| - |
|
331 |
}
|
| - |
|
332 |
$html_filtre .= '>'.$ligne->blv_label.'</option>'."\n";
|
| - |
|
333 |
}
|
| - |
|
334 |
$html_filtre .= '</select>'."\n";
|
| - |
|
335 |
$resultat->free();
|
| - |
|
336 |
return $html_filtre;
|
| - |
|
337 |
}
|
| - |
|
338 |
|
| - |
|
339 |
function getFiltrePlageDeDate () {
|
| - |
|
340 |
if (isset ($_POST['date_debut'])) {
|
| - |
|
341 |
$defaut_debut = $_POST['date_debut'];
|
| - |
|
342 |
} else {
|
| - |
|
343 |
$defaut_debut = '';
|
| - |
|
344 |
}
|
| - |
|
345 |
if (isset ($_POST['date_fin'])) {
|
| - |
|
346 |
$defaut_fin = $_POST['date_fin'];
|
| - |
|
347 |
} else {
|
| - |
|
348 |
$defaut_fin = '';
|
| - |
|
349 |
}
|
| - |
|
350 |
$formulaire_filtre .= 'de <input type="text" readonly size="10" name="date_debut" class="inputDate" id="date_debut" value="'.$defaut_debut.'" />';
|
| - |
|
351 |
$formulaire_filtre .= ' à <input type="text" readonly size="10" name="date_fin" class="inputDate" id="date_fin" value="'.$defaut_fin.'" />';
|
| - |
|
352 |
$formulaire_filtre .= "\n".'<script language="javascript" type="text/javascript">' ."\n".
|
| - |
|
353 |
'$(document).ready(function() { $(\'#date_debut, #date_fin\').datepicker($.extend({}, $.datepicker.regional["fr-FR"],{
|
| - |
|
354 |
dateFormat:\'dd-mm-yy\',
|
| - |
|
355 |
buttonImage: "client/bazar/images/cal.png",
|
| - |
|
356 |
showOn: "both",
|
| - |
|
357 |
beforeShow: customRange,
|
| - |
|
358 |
buttonImageOnly: true'."\n".
|
| - |
|
359 |
'}));})' ."\n".
|
| - |
|
360 |
'function customRange(input) { return {minDate: (input.id == "date_fin" ? $("#date_debut").datepicker("getDate") : null),
|
| - |
|
361 |
maxDate: (input.id == "date_debut" ? $("#date_fin").datepicker("getDate") : null)};}' ."\n".
|
| - |
|
362 |
'</script>';
|
| - |
|
363 |
return $formulaire_filtre;
|
| - |
|
364 |
}
|
| - |
|
365 |
|
| - |
|
366 |
/** Renvoie le formulaire d un filtre
|
| - |
|
367 |
* utile dans la carte google ou dans le calendrier
|
| - |
|
368 |
*
|
| - |
|
369 |
* @param string le template avec des filtres ecrits comme {filtre liste="12"}
|
| - |
|
370 |
* @global mixed $GLOBALS['_BAZAR_']['url']
|
| - |
|
371 |
* @return string html
|
| - |
|
372 |
*/
|
| - |
|
373 |
function getFormulaireFiltre($template) {
|
| - |
|
374 |
if (preg_match_all ('/{filtre liste="([0-9]+)"}/', $template, $subpattern)) {
|
| - |
|
375 |
|
| - |
|
376 |
$formulaire_filtre = '<form action="'.$GLOBALS['_BAZAR_']['url']->getURL().'" method="post">'."\n";
|
| - |
|
377 |
$formulaire_filtre .= '<fieldset><legend>Filtrer : </legend>';
|
| - |
|
378 |
for ($i = 0; $i <count($subpattern[1]); $i++) {
|
| - |
|
379 |
$formulaire_filtre .= bazar::getFiltre($subpattern[1][$i]) ;
|
| - |
|
380 |
}
|
| - |
|
381 |
$formulaire_filtre .= bazar::getFiltrePlageDeDate();
|
| - |
|
382 |
$formulaire_filtre .= '<input type="submit" value="Filtrer" />';
|
| - |
|
383 |
$formulaire_filtre .= '</fieldset>';
|
| - |
|
384 |
$formulaire_filtre .= '</form>'."\n";
|
| - |
|
385 |
$html = preg_replace ('/{filtre liste="([0-9]+)"}/', $formulaire_filtre, $template);
|
| - |
|
386 |
}
|
| - |
|
387 |
return $html;
|
| - |
|
388 |
}
|
| 217 |
}
|
389 |
}
|
| Line 218... |
Line 390... |
| 218 |
|
390 |
|
| Line 219... |
Line 391... |
| 219 |
class Bazar_element {
|
391 |
class Bazar_element {
|
| Line 241... |
Line 413... |
| 241 |
}
|
413 |
}
|
| 242 |
}
|
414 |
}
|
| Line 243... |
Line 415... |
| 243 |
|
415 |
|
| 244 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
416 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
| 245 |
*
|
417 |
*
|
| - |
|
418 |
* $Log: bazar.class.php,v $
|
| - |
|
419 |
* Revision 1.10 2008-09-17 14:08:45 alexandre_tb
|
| - |
|
420 |
* merge depuis aha
|
| 246 |
* $Log: not supported by cvs2svn $
|
421 |
*
|
| 247 |
* Revision 1.9 2007-10-10 13:27:06 alexandre_tb
|
422 |
* Revision 1.9 2007-10-10 13:27:06 alexandre_tb
|
| 248 |
* encodage et remplacement de die en return
|
423 |
* encodage et remplacement de die en return
|
| 249 |
*
|
424 |
*
|
| 250 |
* Revision 1.8 2007-10-01 10:35:14 alexandre_tb
|
425 |
* Revision 1.8 2007-10-01 10:35:14 alexandre_tb
|
| Line 255... |
Line 430... |
| 255 |
*
|
430 |
*
|
| 256 |
* Revision 1.6 2007/04/20 09:58:06 neiluj
|
431 |
* Revision 1.6 2007/04/20 09:58:06 neiluj
|
| 257 |
* correction bug $this->_id_utilisateur
|
432 |
* correction bug $this->_id_utilisateur
|
| 258 |
*
|
433 |
*
|
| 259 |
* Revision 1.5 2007/04/11 08:30:12 neiluj
|
434 |
* Revision 1.5 2007/04/11 08:30:12 neiluj
|
| 260 |
* remise en état du CVS...
|
435 |
* remise en état du CVS...
|
| 261 |
*
|
436 |
*
|
| 262 |
* Revision 1.3.2.1 2007/03/07 16:49:21 jp_milcent
|
437 |
* Revision 1.3.2.1 2007/03/07 16:49:21 jp_milcent
|
| 263 |
* Mise en majuscule de select
|
438 |
* Mise en majuscule de select
|
| 264 |
*
|
439 |
*
|
| 265 |
* Revision 1.3 2006/03/29 13:05:12 alexandre_tb
|
440 |
* Revision 1.3 2006/03/29 13:05:12 alexandre_tb
|