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: listedatefin.php,v 1.2 2008-09-17 14:18:12 alexandre_tb Exp $
|
22 |
// CVS : $Id: listedatefin.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.2 $
|
30 |
*@version $Revision: 1.3 $
|
31 |
// +------------------------------------------------------------------------------------------------------+
|
31 |
// +------------------------------------------------------------------------------------------------------+
|
32 |
*/
|
32 |
*/
|
Line 33... |
Line 33... |
33 |
|
33 |
|
Line 51... |
Line 51... |
51 |
// Petit test pour afficher la date de debut et de fin d evenement
|
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') {
|
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']) {
|
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;
|
54 |
if ($val == 'bf_date_debut_evenement') continue;
|
55 |
$html .= '<div class="BAZ_rubrique BAZ_rubrique_'.$GLOBALS['_BAZAR_']['class'].'">'."\n".
|
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";
|
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'].
|
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>'.
|
58 |
'_description"> '.strftime('%d.%m.%Y',strtotime($GLOBALS['_BAZAR_']['ligne_resultat']['bf_date_debut_evenement'])).'</span>'.
|
59 |
"\n".'</div>'."\n";
|
59 |
"\n".'</div>'."\n";
|
60 |
return $html;
|
60 |
return $html;
|
61 |
} else {
|
61 |
} else {
|
Line 76... |
Line 76... |
76 |
return $html;
|
76 |
return $html;
|
77 |
}
|
77 |
}
|
78 |
}
|
78 |
}
|
Line 79... |
Line 79... |
79 |
|
79 |
|
80 |
$html .= '<div class="BAZ_rubrique BAZ_rubrique_'.$GLOBALS['_BAZAR_']['class'].'">'."\n".
|
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";
|
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'].
|
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";
|
83 |
'_description"> '.strftime('%d.%m.%Y',strtotime($valeur)).'</span>'."\n".'</div>'."\n";
|
84 |
}
|
84 |
}
|
85 |
}
|
85 |
}
|
Line 88... |
Line 88... |
88 |
}
|
88 |
}
|
Line 89... |
Line 89... |
89 |
|
89 |
|
90 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
90 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
91 |
*
|
91 |
*
|
- |
|
92 |
* $Log: not supported by cvs2svn $
|
- |
|
93 |
* Revision 1.2 2008-09-17 14:18:12 alexandre_tb
|
- |
|
94 |
* fusion avec aha
|
92 |
* $Log: not supported by cvs2svn $
|
95 |
*
|
93 |
* Revision 1.1.2.1 2008-04-16 12:35:25 alexandre_tb
|
96 |
* Revision 1.1.2.1 2008-04-16 12:35:25 alexandre_tb
|
94 |
* version initiale
|
97 |
* version initiale
|
95 |
*
|
98 |
*
|
96 |
*
|
99 |
*
|