| Line 30... |
Line 30... |
| 30 |
|
30 |
|
| 31 |
// Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
|
31 |
// Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
|
| 32 |
// pris connaissance de la licence CeCILL, et que vous en avez accepté les
|
32 |
// pris connaissance de la licence CeCILL, et que vous en avez accepté les
|
| 33 |
// termes.
|
33 |
// termes.
|
| 34 |
// ----
|
34 |
// ----
|
| 35 |
// CVS : $Id: bazar.calendrier.applette.php,v 1.9 2007-05-30 16:19:51 alexandre_tb Exp $
|
35 |
// CVS : $Id: bazar.calendrier.applette.php,v 1.10 2007-06-19 09:42:38 alexandre_tb Exp $
|
| 36 |
/**
|
36 |
/**
|
| 37 |
* bazar_calendrier : programme affichant les evenements du bazar sous forme de Calendrier
|
37 |
* bazar_calendrier : programme affichant les evenements du bazar sous forme de Calendrier
|
| 38 |
*
|
38 |
*
|
| 39 |
*
|
39 |
*
|
| 40 |
*@package Bazar
|
40 |
*@package Bazar
|
| 41 |
//Auteur original :
|
41 |
//Auteur original :
|
| 42 |
*@author David DELON <david.delon@clapas.net>
|
42 |
*@author David DELON <david.delon@clapas.net>
|
| 43 |
*@version $Revision: 1.9 $ $Date: 2007-05-30 16:19:51 $
|
43 |
*@version $Revision: 1.10 $ $Date: 2007-06-19 09:42:38 $
|
| 44 |
// +------------------------------------------------------------------------------------------------------+
|
44 |
// +------------------------------------------------------------------------------------------------------+
|
| Line 45... |
Line 45... |
| 45 |
*/
|
45 |
*/
|
| 46 |
|
46 |
|
| Line 57... |
Line 57... |
| 57 |
|
57 |
|
| 58 |
$GLOBALS['_CAL_']['nom_fonction'] = 'afficherCalendrier';
|
58 |
$GLOBALS['_CAL_']['nom_fonction'] = 'afficherCalendrier';
|
| 59 |
$GLOBALS['_GEN_commun']['info_applette_nom_fonction'] = $GLOBALS['_CAL_']['nom_fonction'];
|
59 |
$GLOBALS['_GEN_commun']['info_applette_nom_fonction'] = $GLOBALS['_CAL_']['nom_fonction'];
|
| 60 |
// Balise : CLIENT_BAZAR_CALENDRIER
|
60 |
// Balise : CLIENT_BAZAR_CALENDRIER
|
| 61 |
$GLOBALS['_GEN_commun']['info_applette_balise'] = '(?:<!-- '.$GLOBALS['_GEN_commun']['balise_prefixe_client'].'(BAZAR_CALENDRIER) -->|'.
|
61 |
$GLOBALS['_GEN_commun']['info_applette_balise'] = '(?:<!-- '.$GLOBALS['_GEN_commun']['balise_prefixe_client'].'(BAZAR_CALENDRIER) -->|'.
|
| - |
|
62 |
'\{\{[Bb]azarCalendrier' .
|
| - |
|
63 |
'(?:\s*' .
|
| - |
|
64 |
'(?:' .
|
| - |
|
65 |
'(template="[^"]*")|' .
|
| - |
|
66 |
')' .
|
| - |
|
67 |
')+' .
|
| 62 |
'\{\{[Bb]azarCalendrier\s*\}\})';
|
68 |
'\s*\}\})';
|
| Line 63... |
Line 69... |
| 63 |
function afficherCalendrier() {
|
69 |
function afficherCalendrier($arguments) {
|
| Line 64... |
Line 70... |
| 64 |
|
70 |
|
| Line 65... |
Line 71... |
| 65 |
return GestionAffichageCalendrier('calendrier_applette');
|
71 |
return GestionAffichageCalendrier($arguments, 'calendrier_applette');
|
| 66 |
|
72 |
|