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: bazar.fonct.cal.php,v 1.17 2007-04-11 08:30:12 neiluj Exp $
|
22 |
// CVS : $Id: bazar.fonct.cal.php,v 1.18 2007-06-12 14:58:25 alexandre_tb Exp $
|
23 |
/**
|
23 |
/**
|
24 |
*
|
24 |
*
|
25 |
* Fonctions calendrier du module bazar
|
25 |
* Fonctions calendrier du module bazar
|
26 |
*
|
26 |
*
|
27 |
*@package bazar
|
27 |
*@package bazar
|
28 |
//Auteur original :
|
28 |
//Auteur original :
|
29 |
*@author David Delon <david.delon@clapas.net>
|
29 |
*@author David Delon <david.delon@clapas.net>
|
30 |
//Autres auteurs :
|
30 |
//Autres auteurs :
|
31 |
*@copyright Tela-Botanica 2000-2004
|
31 |
*@copyright Tela-Botanica 2000-2004
|
32 |
*@version $Revision: 1.17 $ $Date: 2007-04-11 08:30:12 $
|
32 |
*@version $Revision: 1.18 $ $Date: 2007-06-12 14:58:25 $
|
33 |
// +------------------------------------------------------------------------------------------------------+
|
33 |
// +------------------------------------------------------------------------------------------------------+
|
34 |
*/
|
34 |
*/
|
Line 35... |
Line 35... |
35 |
|
35 |
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
Line 106... |
Line 106... |
106 |
|
106 |
|
107 |
$fr_month = array( "1"=>BAZ_JANVIER,"2"=>BAZ_FEVRIER,"3"=>BAZ_MARS,"4"=>BAZ_AVRIL,"5"=>BAZ_MAI,"6"=>BAZ_JUIN,
|
107 |
$fr_month = array( "1"=>BAZ_JANVIER,"2"=>BAZ_FEVRIER,"3"=>BAZ_MARS,"4"=>BAZ_AVRIL,"5"=>BAZ_MAI,"6"=>BAZ_JUIN,
|
Line 108... |
Line 108... |
108 |
"7"=>BAZ_JUILLET,"8"=>BAZ_AOUT,"9"=>BAZ_SEPTEMBRE,"10"=>BAZ_OCTOBRE,"11"=>BAZ_NOVEMBRE,"12"=>BAZ_DECEMBRE);
|
108 |
"7"=>BAZ_JUILLET,"8"=>BAZ_AOUT,"9"=>BAZ_SEPTEMBRE,"10"=>BAZ_OCTOBRE,"11"=>BAZ_NOVEMBRE,"12"=>BAZ_DECEMBRE);
|
109 |
|
109 |
|
Line 110... |
Line 110... |
110 |
$retour.= "<div class=\"navi\">";
|
110 |
$retour.= "<div class=\"navi\">";
|
111 |
$retour.= "<a href=\"".$prev."\"> << </a>";
|
111 |
$retour.= "<a href=\"".$prev."\" id=\"navi_ant\"> << </a>";
|
112 |
|
112 |
|
113 |
$retour.= " ";
|
113 |
$retour.= " ";
|
114 |
$retour.= "<a href=\"".$cur;
|
114 |
$retour.= "<a href=\"".$cur;
|
115 |
$retour.= "\"> ";
|
115 |
$retour.= "\"> ";
|
116 |
$retour.= $fr_month[(date('n',$curStamp))];
|
116 |
$retour.= $fr_month[(date('n',$curStamp))];
|
117 |
$retour.= " ";
|
117 |
$retour.= " ";
|
118 |
$retour.= (date('Y',$curStamp));
|
118 |
$retour.= (date('Y',$curStamp));
|
Line 119... |
Line 119... |
119 |
$retour.= "</a>";
|
119 |
$retour.= "</a>";
|
Line 120... |
Line 120... |
120 |
$retour.= " ";
|
120 |
$retour.= " ";
|