Subversion Repositories Applications.bazar

Rev

Rev 409 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 409 Rev 432
1
<?php
1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
3
// +------------------------------------------------------------------------------------------------------+
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
16
// | Lesser General Public License for more details.                                                      |
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: liste.php,v 1.3 2008-11-19 09:28:46 aperonnet Exp $
22
// CVS : $Id: liste.php,v 1.3 2008-11-19 09:28:46 aperonnet 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
//Autres auteurs :
28
//Autres auteurs :
29
*@copyright     Tela-Botanica 2000-2008
29
*@copyright     Tela-Botanica 2000-2008
30
*@version       $Revision: 1.3 $
30
*@version       $Revision: 1.3 $
31
// +------------------------------------------------------------------------------------------------------+
31
// +------------------------------------------------------------------------------------------------------+
32
*/
32
*/
-
 
33
 
-
 
34
// TODO : Semble inutilise cf ; formulaire.fonct.inc
-
 
35
 
33
 
36
 
34
include_once PAP_CHEMIN_API_PEAR.'PEAR.php';
37
include_once PAP_CHEMIN_API_PEAR.'PEAR.php';
35
 
38
 
36
 
39
 
37
class Bazar_liste extends PEAR {
40
class Bazar_liste extends PEAR {
38
	
41
	
39
	var $option = array();
42
	var $option = array();
40
	
43
	
41
	function Bazar_liste($options) {
44
	function Bazar_liste($options) {
42
		$this->options = $options;
45
		$this->options = $options;
43
	}
46
	}
44
	
47
	
45
	function toHTML($valeur) {
48
	function toHTML($valeur) {
-
 
49
		
46
		$html = '';
50
		$html = '';
47
		$val = $this->options['nom_bdd'];
51
		$val = $this->options['nom_bdd'];
48
		//pour les champs renseignes par une liste, on va chercher le label de la liste, plutot que l'id				
52
		//pour les champs renseignes par une liste, on va chercher le label de la liste, plutot que l'id				
49
		$requete = 'SELECT blv_label FROM bazar_fiche_valeur_liste, bazar_liste_valeurs WHERE bfvl_ce_fiche='.
53
		$requete = 'SELECT blv_label FROM bazar_fiche_valeur_liste, bazar_liste_valeurs WHERE bfvl_ce_fiche='.
50
					$GLOBALS['_BAZAR_']['id_fiche'].' AND  bfvl_ce_liste='.$this->options['nom_bdd'].
54
					$GLOBALS['_BAZAR_']['id_fiche'].' AND  bfvl_ce_liste='.$this->options['nom_bdd'].
51
					' AND bfvl_valeur=blv_valeur AND blv_ce_liste='.$this->options['nom_bdd'].
55
					' AND bfvl_valeur=blv_valeur AND blv_ce_liste='.$this->options['nom_bdd'].
52
					' AND blv_ce_i18n="'.$GLOBALS['_BAZAR_']['langue'].'"';
56
					' AND blv_ce_i18n="'.$GLOBALS['_BAZAR_']['langue'].'" ORDER by blv_valeur';
53
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
57
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
54
		if (DB::isError ($resultat)) {
58
		if (DB::isError ($resultat)) {
55
			return ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
59
			return ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
56
		}
60
		}
57
		$val='';$nb=0;
61
		$val='';$nb=0;
58
		while ($tab = $resultat->fetchRow()) {
62
		while ($tab = $resultat->fetchRow()) {
59
			if ($nb>0) $val .= ', ';
63
			if ($nb>0) $val .= ', ';
60
			$val .= $tab[0];
64
			$val .= $tab[0];
61
			$nb++;
65
			$nb++;
62
		}				
66
		}				
63
		if ($val != '' and $val != BAZ_CHOISIR and $val != BAZ_NON_PRECISE) {
67
		if ($val != '' and $val != BAZ_CHOISIR and $val != BAZ_NON_PRECISE) {
64
			$html .= '<div class="BAZ_rubrique BAZ_rubrique_'.$GLOBALS['_BAZAR_']['class'].'">'.
68
			$html .= '<div class="BAZ_rubrique BAZ_rubrique_'.$GLOBALS['_BAZAR_']['class'].'">'.
65
			"\n".'<span class="BAZ_label" id="rubrique_'.$this->options['nom_bdd'].'">'.$this->options['label'].' : </span>'."\n";
69
			"\n".'<span class="BAZ_label" id="rubrique_'.$this->options['nom_bdd'].'">'.$this->options['label'].' : </span>'."\n";
66
			$html .= '<span class="BAZ_texte BAZ_texte_'.$GLOBALS['_BAZAR_']['class'].'" id="description_'.$this->options['nom_bdd'].
70
			$html .= '<span class="BAZ_texte BAZ_texte_'.$GLOBALS['_BAZAR_']['class'].'" id="description_'.$this->options['nom_bdd'].
67
					'"> '.$val.'</span>'."\n".'</div>'."\n";
71
					'"> '.$val.'</span>'."\n".'</div>'."\n";
68
		}
72
		}
69
		return $html;
73
		return $html;
70
	}
74
	}
71
}
75
}
72
 
76
 
73
/* +--Fin du code ----------------------------------------------------------------------------------------+
77
/* +--Fin du code ----------------------------------------------------------------------------------------+
74
*
78
*
75
* $Log: not supported by cvs2svn $
79
* $Log: not supported by cvs2svn $
76
* Revision 1.2  2008-09-17 14:18:12  alexandre_tb
80
* Revision 1.2  2008-09-17 14:18:12  alexandre_tb
77
* fusion avec aha
81
* fusion avec aha
78
*
82
*
79
* Revision 1.1.2.1  2008-04-16 12:35:25  alexandre_tb
83
* Revision 1.1.2.1  2008-04-16 12:35:25  alexandre_tb
80
* version initiale
84
* version initiale
81
*
85
*
82
*
86
*
83
* +-- Fin du code ----------------------------------------------------------------------------------------+
87
* +-- Fin du code ----------------------------------------------------------------------------------------+
84
*/
88
*/
85
?>
89
?>