| 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: textelong.php,v 1.2 2008-09-17 14:18:12 alexandre_tb Exp $
|
22 |
// CVS : $Id: textelong.php,v 1.3 2008-10-29 10:35:40 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.2 $
|
30 |
*@version $Revision: 1.3 $
|
| 31 |
// +------------------------------------------------------------------------------------------------------+
|
31 |
// +------------------------------------------------------------------------------------------------------+
|
| 32 |
*/
|
32 |
*/
|
| Line 33... |
Line 33... |
| 33 |
|
33 |
|
| Line 43... |
Line 43... |
| 43 |
}
|
43 |
}
|
| Line 44... |
Line 44... |
| 44 |
|
44 |
|
| 45 |
function toHTML($valeur) {
|
45 |
function toHTML($valeur) {
|
| 46 |
$html = '';
|
46 |
$html = '';
|
| 47 |
$val = $this->options['nom_bdd'];
|
47 |
$val = $this->options['nom_bdd'];
|
| 48 |
if (!in_array($val, array ('bf_titre', 'bf_description'))) {
|
48 |
//if (!in_array($val, array ('bf_titre', 'bf_description'))) {
|
| 49 |
$html .= '<div class="BAZ_rubrique BAZ_rubrique_'.$GLOBALS['_BAZAR_']['class'].'">'."\n".
|
49 |
$html .= '<div class="BAZ_rubrique BAZ_rubrique_'.$GLOBALS['_BAZAR_']['class'].'">'."\n".
|
| 50 |
'<span class="BAZ_label" id="'.$this->options['nom_bdd'].'_rubrique">'.$this->options['label'].':</span>'."\n";
|
50 |
'<span class="BAZ_label" id="'.$this->options['nom_bdd'].'_rubrique">'.$this->options['label'].':</span>'."\n";
|
| 51 |
$html .= '<span class="BAZ_texte BAZ_texte_'.$GLOBALS['_BAZAR_']['class'].'" id="'.$this->options['nom_bdd'].'_description"> '.
|
51 |
$html .= '<span class="BAZ_texte BAZ_texte_'.$GLOBALS['_BAZAR_']['class'].'" id="'.$this->options['nom_bdd'].'_description"> '.
|
| 52 |
nl2br($valeur).'</span>'."\n".'</div>'."\n";
|
52 |
nl2br($valeur).'</span>'."\n".'</div>'."\n";
|
| 53 |
}
|
53 |
//}
|
| 54 |
return $html;
|
54 |
return $html;
|
| 55 |
}
|
55 |
}
|
| Line 56... |
Line 56... |
| 56 |
}
|
56 |
}
|
| 57 |
|
57 |
|
| 58 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
58 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
| - |
|
59 |
*
|
| - |
|
60 |
* $Log: not supported by cvs2svn $
|
| - |
|
61 |
* Revision 1.2 2008-09-17 14:18:12 alexandre_tb
|
| 59 |
*
|
62 |
* fusion avec aha
|
| 60 |
* $Log: not supported by cvs2svn $
|
63 |
*
|
| 61 |
* Revision 1.1.2.1 2008-04-16 12:35:25 alexandre_tb
|
64 |
* Revision 1.1.2.1 2008-04-16 12:35:25 alexandre_tb
|
| 62 |
* version initiale
|
65 |
* version initiale
|
| 63 |
*
|
66 |
*
|