393 |
alexandre_ |
1 |
<?php
|
|
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This library is free software; you can redistribute it and/or |
|
|
|
9 |
// | modify it under the terms of the GNU Lesser General Public |
|
|
|
10 |
// | License as published by the Free Software Foundation; either |
|
|
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
12 |
// | |
|
|
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
16 |
// | Lesser General Public License for more details. |
|
|
|
17 |
// | |
|
|
|
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 |
|
|
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
22 |
// CVS : $Id: listedatefin.php,v 1.2 2008-09-17 14:18:12 alexandre_tb Exp $
|
|
|
23 |
/**
|
|
|
24 |
*
|
|
|
25 |
*@package bazar
|
|
|
26 |
//Auteur original :
|
|
|
27 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
|
|
28 |
//Autres auteurs :
|
|
|
29 |
*@copyright Tela-Botanica 2000-2008
|
|
|
30 |
*@version $Revision: 1.2 $
|
|
|
31 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
32 |
*/
|
|
|
33 |
|
|
|
34 |
include_once PAP_CHEMIN_API_PEAR.'PEAR.php';
|
|
|
35 |
|
|
|
36 |
|
|
|
37 |
class Bazar_listedatefin extends PEAR {
|
|
|
38 |
|
|
|
39 |
var $option = array();
|
|
|
40 |
|
|
|
41 |
function Bazar_listedatefin($options) {
|
|
|
42 |
$this->options = $options;
|
|
|
43 |
}
|
|
|
44 |
|
|
|
45 |
function toHTML($valeur) {
|
|
|
46 |
$html = '';
|
|
|
47 |
$val = $this->options['nom_bdd'];
|
|
|
48 |
|
|
|
49 |
if (!in_array($val, array ('bf_date_debut_validite_fiche', 'bf_date_fin_validite_fiche'))) {
|
|
|
50 |
if ($valeur != '' && $valeur != '0000-00-00') {
|
|
|
51 |
// Petit test pour afficher la date de debut et de fin d evenement
|
|
|
52 |
if ($val == 'bf_date_debut_evenement' || $val == 'bf_date_fin_evenement') {
|
|
|
53 |
if ($GLOBALS['_BAZAR_']['ligne_resultat']['bf_date_debut_evenement'] == $GLOBALS['_BAZAR_']['ligne_resultat']['bf_date_fin_evenement']) {
|
|
|
54 |
if ($val == 'bf_date_debut_evenement') continue;
|
|
|
55 |
$html .= '<div class="BAZ_rubrique BAZ_rubrique_'.$GLOBALS['_BAZAR_']['class'].'">'."\n".
|
|
|
56 |
'<span class="BAZ_label" id="'.$this->options['nom_bdd'].'_rubrique">'.BAZ_LE.':</span>'."\n";
|
|
|
57 |
$html .= '<span class="BAZ_texte BAZ_texte_'.$GLOBALS['_BAZAR_']['class'].'" id="'.$this->options['nom_bdd'].
|
|
|
58 |
'_description"> '.strftime('%d.%m.%Y',strtotime($GLOBALS['_BAZAR_']['ligne_resultat']['bf_date_debut_evenement'])).'</span>'.
|
|
|
59 |
"\n".'</div>'."\n";
|
|
|
60 |
return $html;
|
|
|
61 |
} else {
|
|
|
62 |
|
|
|
63 |
if ($val == 'bf_date_debut_evenement') {
|
|
|
64 |
$html .= '<div class="BAZ_rubrique BAZ_rubrique_'.$GLOBALS['_BAZAR_']['class'].'">'."\n".
|
|
|
65 |
'<span class="BAZ_label" id="'.$this->options['nom_bdd'].'_rubrique">';
|
|
|
66 |
$html .= BAZ_DU;
|
|
|
67 |
$html .= '</span>'."\n".'<span class="BAZ_texte BAZ_texte_'.$GLOBALS['_BAZAR_']['class'].'" id="'.
|
|
|
68 |
$this->options['nom_bdd'].'_description"> '.strftime('%d.%m.%Y',strtotime($valeur)).'</span>'."\n";
|
|
|
69 |
} else {
|
|
|
70 |
$html .= '<span class="BAZ_label" id="'.$this->options['nom_bdd'].'_rubrique">'.BAZ_AU;
|
|
|
71 |
$html .= '</span>'."\n".'<span class="BAZ_texte BAZ_texte_'.$GLOBALS['_BAZAR_']['class'].'" id="'.
|
|
|
72 |
$this->options['nom_bdd'].'_description"> '.strftime('%d.%m.%Y',strtotime($valeur)).
|
|
|
73 |
'</span>'."\n".'</div>'."\n";
|
|
|
74 |
}
|
|
|
75 |
|
|
|
76 |
return $html;
|
|
|
77 |
}
|
|
|
78 |
}
|
|
|
79 |
|
|
|
80 |
$html .= '<div class="BAZ_rubrique BAZ_rubrique_'.$GLOBALS['_BAZAR_']['class'].'">'."\n".
|
|
|
81 |
'<span class="BAZ_label" id="'.$this->options['nom_bdd'].'_rubrique">'.$this->options['label'].':</span>'."\n";
|
|
|
82 |
$html .= '<span class="BAZ_texte BAZ_texte_'.$GLOBALS['_BAZAR_']['class'].'" id="'.$this->options['nom_bdd'].
|
|
|
83 |
'_description"> '.strftime('%d.%m.%Y',strtotime($valeur)).'</span>'."\n".'</div>'."\n";
|
|
|
84 |
}
|
|
|
85 |
}
|
|
|
86 |
return $html;
|
|
|
87 |
}
|
|
|
88 |
}
|
|
|
89 |
|
|
|
90 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
91 |
*
|
|
|
92 |
* $Log: not supported by cvs2svn $
|
|
|
93 |
* Revision 1.1.2.1 2008-04-16 12:35:25 alexandre_tb
|
|
|
94 |
* version initiale
|
|
|
95 |
*
|
|
|
96 |
*
|
|
|
97 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
98 |
*/
|
|
|
99 |
?>
|