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.19 2007-06-25 08:29:04 alexandre_tb Exp $
|
22 |
// CVS : $Id: bazar.fonct.cal.php,v 1.20 2007-06-25 12:15:06 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.19 $ $Date: 2007-06-25 08:29:04 $
|
32 |
*@version $Revision: 1.20 $ $Date: 2007-06-25 12:15:06 $
|
33 |
// +------------------------------------------------------------------------------------------------------+
|
33 |
// +------------------------------------------------------------------------------------------------------+
|
34 |
*/
|
34 |
*/
|
Line 35... |
Line 35... |
35 |
|
35 |
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
Line 148... |
Line 148... |
148 |
"FROM bazar_fiche, bazar_nature ".
|
148 |
"FROM bazar_fiche, bazar_nature ".
|
149 |
"WHERE YEAR(bf_date_debut_evenement) = ".date('Y',$curStamp)." ".
|
149 |
"WHERE YEAR(bf_date_debut_evenement) = ".date('Y',$curStamp)." ".
|
150 |
"AND month(bf_date_debut_evenement) = ".date('m',$curStamp)." ".
|
150 |
"AND month(bf_date_debut_evenement) = ".date('m',$curStamp)." ".
|
151 |
"AND bf_ce_nature = bn_id_nature ".
|
151 |
"AND bf_ce_nature = bn_id_nature ".
|
152 |
"AND bn_id_nature IN (".BAZ_NUM_ANNONCE_CALENDRIER.") ".
|
152 |
"AND bn_id_nature IN (".BAZ_NUM_ANNONCE_CALENDRIER.") ".
|
153 |
"AND bf_statut_fiche = 1";
|
153 |
"AND bf_statut_fiche = 1 ".
|
- |
|
154 |
"ORDER BY bf_jour_debut_evenement";
|
Line 154... |
Line 155... |
154 |
|
155 |
|
Line 155... |
Line 156... |
155 |
$resultat_evenement = $db->query($requete_evenements);
|
156 |
$resultat_evenement = $db->query($requete_evenements);
|
156 |
|
157 |
|