Subversion Repositories Applications.bazar

Rev

Rev 409 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 409 Rev 468
Line 1... Line 1...
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: texte.php,v 1.4 2008-11-19 09:28:46 aperonnet Exp $
22
// CVS : $Id: texte.php,v 1.3 2008-10-29 10:36:44 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
//Autres auteurs :
28
//Autres auteurs :
29
*@copyright     Tela-Botanica 2000-2008
29
*@copyright     Tela-Botanica 2000-2008
30
*@version       $Revision: 1.4 $
30
*@version       $Revision: 1.3 $
31
// +------------------------------------------------------------------------------------------------------+
31
// +------------------------------------------------------------------------------------------------------+
32
*/
32
*/
33
 
33
 
34
include_once PAP_CHEMIN_API_PEAR.'PEAR.php';
34
include_once PAP_CHEMIN_API_PEAR.'PEAR.php';
35
 
35
 
36
 
36
 
37
class Bazar_texte extends PEAR {
37
class Bazar_texte extends PEAR {
38
	
38
	
39
	var $option = array();
39
	var $option = array();
40
	
40
	
41
	function Bazar_texte($options) {
41
	function Bazar_texte($options) {
42
		$this->options = $options;
42
		$this->options = $options;
43
	}
43
	}
44
	
44
	
45
	function toHTML($valeur) {
45
	function toHTML($valeur) {
46
		if ($valeur == '') return ;
46
		if ($valeur == '') return ;
47
		$html = '';
47
		$html = '';
48
		$val = $this->options['nom_bdd'];
48
		$val = $this->options['nom_bdd'];
49
		//if (!in_array($val, array ('bf_titre', 'bf_description'))) {
49
		//if (!in_array($val, array ('bf_titre', 'bf_description'))) {
50
			$html .= '<div class="BAZ_rubrique  BAZ_rubrique_'.$GLOBALS['_BAZAR_']['class'].'">'."\n".
50
			$html .= '<div class="BAZ_rubrique  BAZ_rubrique_'.$GLOBALS['_BAZAR_']['class'].'">'."\n".
51
					'<span class="BAZ_label" id="'.$this->options['nom_bdd'].'_rubrique">'.$this->options['label'].' : </span>'."\n";
51
					'<span class="BAZ_label" id="'.$this->options['nom_bdd'].'_rubrique">'.$this->options['label'].' : </span>'."\n";
52
			$html .= '<span class="BAZ_texte BAZ_texte_'.$GLOBALS['_BAZAR_']['class'].'" id="'.$this->options['nom_bdd'].'_description"> '.
52
			$html .= '<span class="BAZ_texte BAZ_texte_'.$GLOBALS['_BAZAR_']['class'].'" id="'.$this->options['nom_bdd'].'_description"> '.
53
						nl2br($valeur).'</span>'."\n".'</div>'."\n";
53
						nl2br($valeur).'</span>'."\n".'</div>'."\n";
54
		//}
54
		//}
55
		return $html;
55
		return $html;
56
	}
56
	}
57
	
57
	
58
	function toForm($valeur_defaut = '') {
58
	function toForm($valeur_defaut = '') {
59
		if ($valeur_defaut != '') $this->option['defaut'] = $valeur_defaut;
59
		if ($valeur_defaut != '') $this->option['defaut'] = $valeur_defaut;
60
 
60
 
61
		$html = $this->options['label'].'<input type="text" size="'.$this->option['limite1'].
61
		$html = $this->options['label'].'<input type="text" size="'.$this->option['limite1'].
62
				'" maxlength="'.$this->option['limite2'].'" id="'.$this->option['nom_bdd'].
62
				'" maxlength="'.$this->option['limite2'].'" id="'.$this->option['nom_bdd'].
63
				'" value="'.$this->option['defaut'].'" />';
63
				'" value="'.$this->option['defaut'].'" />';
64
		return $html;
64
		return $html;
65
	}
65
	}
66
}
66
}
67
 
67
 
68
/* +--Fin du code ----------------------------------------------------------------------------------------+
68
/* +--Fin du code ----------------------------------------------------------------------------------------+
69
*
69
*
70
* $Log: not supported by cvs2svn $
70
* $Log: texte.php,v $
71
* Revision 1.3  2008-10-29 10:36:44  alexandre_tb
71
* Revision 1.3  2008-10-29 10:36:44  alexandre_tb
72
* l'element texte s affiche meme pour le titre et la description
72
* l'element texte s affiche meme pour le titre et la description
73
*
73
*
74
* Revision 1.2  2008-09-17 14:18:12  alexandre_tb
74
* Revision 1.2  2008-09-17 14:18:12  alexandre_tb
75
* fusion avec aha
75
* fusion avec aha
76
*
76
*
77
* Revision 1.1.2.1  2008-04-16 12:35:25  alexandre_tb
77
* Revision 1.1.2.1  2008-04-16 12:35:25  alexandre_tb
78
* version initiale
78
* version initiale
79
*
79
*
80
*
80
*
81
* +-- Fin du code ----------------------------------------------------------------------------------------+
81
* +-- Fin du code ----------------------------------------------------------------------------------------+
82
*/
82
*/
83
?>
83
?>
84
84