19,7 → 19,7 |
// | License along with this library; if not, write to the Free Software | |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
// +------------------------------------------------------------------------------------------------------+ |
// CVS : $Id: bazar.class.php,v 1.10 2008-09-17 14:08:45 alexandre_tb Exp $ |
// CVS : $Id: bazar.class.php,v 1.11 2008-10-29 10:38:14 alexandre_tb Exp $ |
/** |
* |
*@package bazar |
27,7 → 27,7 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org> |
*@author Florian Schmitt <florian@ecole-et-nature.org> |
*@copyright Tela-Botanica 2000-2004 |
*@version $Revision: 1.10 $ |
*@version $Revision: 1.11 $ |
// +------------------------------------------------------------------------------------------------------+ |
*/ |
|
44,6 → 44,7 |
// +------------------------------------------------------------------------------------------------------+ |
|
include_once PAP_CHEMIN_API_PEAR.'PEAR.php'; |
include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazarTemplate.class.php'; |
|
class Administrateur_bazar { |
|
191,7 → 192,10 |
|
|
|
define ('BAZAR_NOTIFICATION_NOUVELLE_FICHE', 1); |
define ('BAZAR_NOTIFICATION_MODIFICATION_FICHE', 2); |
|
|
class bazar extends PEAR { |
|
/** |
233,8 → 237,157 |
} |
return $tableau_mail; |
} |
/** |
* notifier() envoie un message aux administrateurs |
* |
* par defaut lors du depot ou de la modification d une fiche |
*/ |
function notifier($type = BAZAR_NOTIFICATION_NOUVELLE_FICHE) { |
|
switch ($type) { |
case BAZAR_NOTIFICATION_NOUVELLE_FICHE : |
$id_sujet = BAZ_TEMPLATE_MAIL_NOUVELLE_FICHE_SUJET; |
$id_corps = BAZ_TEMPLATE_MAIL_NOUVELLE_FICHE_CORPS; |
break ; |
case BAZAR_NOTIFICATION_MODIFICATION_FICHE : |
$id_sujet = BAZ_TEMPLATE_MAIL_MODIFIER_FICHE_SUJET; |
$id_corps = BAZ_TEMPLATE_MAIL_MODIFIER_FICHE_CORPS; |
break; |
} |
|
$template = new bazarTemplate($GLOBALS['_BAZAR_']['db']); |
//print ('toto'.$id_sujet); |
$sujet = html_entity_decode($template->getTemplate($id_sujet, $GLOBALS['_BAZAR_']['langue'], $GLOBALS['_BAZAR_']['id_typeannonce'])); |
$corps = html_entity_decode($template->getTemplate($id_corps, $GLOBALS['_BAZAR_']['langue'], $GLOBALS['_BAZAR_']['id_typeannonce'])); |
|
$mails = bazar::getMailSuperAdmin($GLOBALS['_BAZAR_']['id_typeannonce']); |
if (is_array ($mails)) { |
foreach ($mails as $mail) { |
mail ($mail, $sujet, $corps); |
} |
} |
} |
|
/** Effectue une requete sur bazar_nature pour remplir diverses |
* globales |
* |
* @global string la globale de langue (ex fr-FR) |
* @global int $GLOBALS['_BAZAR_']['id_typeannonce'] |
* |
* @return mixed true ou PEAR_Error |
*/ |
function chargeNature() { |
|
$requete = 'SELECT bn_label_nature, bn_condition, bn_template, bn_commentaire, bn_appropriation, bn_image_titre, bn_image_logo'; |
$requete .= ' FROM bazar_nature WHERE bn_id_nature = '.$GLOBALS['_BAZAR_']['id_typeannonce']; |
if (isset($GLOBALS['_BAZAR_']['langue'])) { |
$requete .= ' and bn_ce_i18n like "'.$GLOBALS['_BAZAR_']['langue'].'%"'; |
} |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ; |
if (DB::isError($resultat)) { |
return $resultat->getMessage().$resultat->getDebugInfo() ; |
} |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC); |
$GLOBALS['_BAZAR_']['typeannonce']=$ligne['bn_label_nature']; |
$GLOBALS['_BAZAR_']['condition']=$ligne['bn_condition']; |
$GLOBALS['_BAZAR_']['template']=$ligne['bn_template']; |
$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire']; |
$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation']; |
$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre']; |
$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo']; |
return true; |
} |
/** Renvoie un element de formulaire de type select ou radio |
* au vue de filtrer les resultats du bazar |
* @global mixed $GLOBALS['_BAZAR_']['db'] identifiant de connexion a la bd |
* |
* @return string html |
*/ |
function getFiltre($numero_liste, $multiple = false, $type = 'select') { |
$type == 'select' ? $balise = 'select' : $balise = 'radio' ; |
|
// chargement du template |
$tableau_template = baz_valeurs_template($GLOBALS['_BAZAR_']['template']); |
|
$html_filtre = '<select name="bazar_filtre_'.$numero_liste.'" onchange="javascript:this.form.submit();">'."\n"; |
|
// Requete dans bazar_liste_valeurs |
$requete = 'select blv_valeur, blv_label from bazar_liste_valeurs where blv_ce_liste="'.$numero_liste.'"'; |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete); |
|
if (DB::isError($resultat)) { |
return $resultat->getMessage().$resultat->getDebugInfo() ; |
} |
$html_filtre .= '<option id="filtre_tous" value="*" '; |
if (isset($_POST['bazar_filtre_'.$numero_liste]) && '*' == $_POST['bazar_filtre_'.$numero_liste]) { |
$html_filtre .= 'selected="selected" '; |
} |
$html_filtre .= '>'.'Tout afficher'.'</option>'; |
|
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT)) { |
$html_filtre .= '<option class="filtre_'.$ligne->blv_valeur.'" value="'.$ligne->blv_valeur.'"'; |
if (isset($_POST['bazar_filtre_'.$numero_liste]) && $ligne->blv_valeur == $_POST['bazar_filtre_'.$numero_liste]) { |
$html_filtre .= 'selected="selected" '; |
} |
$html_filtre .= '>'.$ligne->blv_label.'</option>'."\n"; |
} |
$html_filtre .= '</select>'."\n"; |
$resultat->free(); |
return $html_filtre; |
} |
|
function getFiltrePlageDeDate () { |
if (isset ($_POST['date_debut'])) { |
$defaut_debut = $_POST['date_debut']; |
} else { |
$defaut_debut = ''; |
} |
if (isset ($_POST['date_fin'])) { |
$defaut_fin = $_POST['date_fin']; |
} else { |
$defaut_fin = ''; |
} |
$formulaire_filtre .= 'de <input type="text" readonly size="10" name="date_debut" class="inputDate" id="date_debut" value="'.$defaut_debut.'" />'; |
$formulaire_filtre .= ' à <input type="text" readonly size="10" name="date_fin" class="inputDate" id="date_fin" value="'.$defaut_fin.'" />'; |
$formulaire_filtre .= "\n".'<script language="javascript" type="text/javascript">' ."\n". |
'$(document).ready(function() { $(\'#date_debut, #date_fin\').datepicker($.extend({}, $.datepicker.regional["fr-FR"],{ |
dateFormat:\'dd-mm-yy\', |
buttonImage: "client/bazar/images/cal.png", |
showOn: "both", |
beforeShow: customRange, |
buttonImageOnly: true'."\n". |
'}));})' ."\n". |
'function customRange(input) { return {minDate: (input.id == "date_fin" ? $("#date_debut").datepicker("getDate") : null), |
maxDate: (input.id == "date_debut" ? $("#date_fin").datepicker("getDate") : null)};}' ."\n". |
'</script>'; |
return $formulaire_filtre; |
} |
|
/** Renvoie le formulaire d un filtre |
* utile dans la carte google ou dans le calendrier |
* |
* @param string le template avec des filtres ecrits comme {filtre liste="12"} |
* @global mixed $GLOBALS['_BAZAR_']['url'] |
* @return string html |
*/ |
function getFormulaireFiltre($template) { |
if (preg_match_all ('/{filtre liste="([0-9]+)"}/', $template, $subpattern)) { |
|
$formulaire_filtre = '<form action="'.$GLOBALS['_BAZAR_']['url']->getURL().'" method="post">'."\n"; |
$formulaire_filtre .= '<fieldset><legend>Filtrer : </legend>'; |
for ($i = 0; $i <count($subpattern[1]); $i++) { |
$formulaire_filtre .= bazar::getFiltre($subpattern[1][$i]) ; |
} |
$formulaire_filtre .= bazar::getFiltrePlageDeDate(); |
$formulaire_filtre .= '<input type="submit" value="Filtrer" />'; |
$formulaire_filtre .= '</fieldset>'; |
$formulaire_filtre .= '</form>'."\n"; |
$html = preg_replace ('/{filtre liste="([0-9]+)"}/', $formulaire_filtre, $template); |
} |
return $html; |
} |
} |
|
class Bazar_element { |
|
function &factory($type, $options = false) |
263,6 → 416,9 |
/* +--Fin du code ----------------------------------------------------------------------------------------+ |
* |
* $Log: not supported by cvs2svn $ |
* Revision 1.10 2008-09-17 14:08:45 alexandre_tb |
* merge depuis aha |
* |
* Revision 1.9 2007-10-10 13:27:06 alexandre_tb |
* encodage et remplacement de die en return |
* |