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.28 2008-03-17 18:32:51 jp_milcent Exp $
|
22 |
// CVS : $Id: bazar.fonct.cal.php,v 1.29 2008-10-29 10:38:51 alexandre_tb Exp $
|
23 |
/**
|
23 |
/**
|
24 |
*
|
24 |
*
|
25 |
* Fonctions calendrier du module bazar
|
25 |
* Fonctions calendrier du module bazar
|
26 |
*
|
26 |
*
|
27 |
* TODO : ajouter la gestion du multilinguisme
|
27 |
* TODO : ajouter la gestion du multilinguisme
|
Line 29... |
Line 29... |
29 |
*@package bazar
|
29 |
*@package bazar
|
30 |
//Auteur original :
|
30 |
//Auteur original :
|
31 |
*@author David Delon <david.delon@clapas.net>
|
31 |
*@author David Delon <david.delon@clapas.net>
|
32 |
//Autres auteurs :
|
32 |
//Autres auteurs :
|
33 |
*@copyright Tela-Botanica 2000-2004
|
33 |
*@copyright Tela-Botanica 2000-2004
|
34 |
*@version $Revision: 1.28 $ $Date: 2008-03-17 18:32:51 $
|
34 |
*@version $Revision: 1.29 $ $Date: 2008-10-29 10:38:51 $
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
*/
|
36 |
*/
|
Line 37... |
Line 37... |
37 |
|
37 |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
Line 198... |
Line 198... |
198 |
// Ajout du javascript et des styles du bazar
|
198 |
// Ajout du javascript et des styles du bazar
|
199 |
if (defined('PAP_VERSION')) { //si on est dans Papyrus
|
199 |
if (defined('PAP_VERSION')) { //si on est dans Papyrus
|
200 |
GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
|
200 |
GEN_stockerStyleExterne( 'bazar_interne', 'client/bazar/bazar.interne.css');
|
201 |
GEN_stockerFichierScript('domLib', '/api/js/domtooltip/domLib.js');
|
201 |
GEN_stockerFichierScript('domLib', '/api/js/domtooltip/domLib.js');
|
202 |
GEN_stockerFichierScript('domTT', '/api/js/domtooltip/domTT.js');
|
202 |
GEN_stockerFichierScript('domTT', '/api/js/domtooltip/domTT.js');
|
- |
|
203 |
|
203 |
// DomToolTip
|
204 |
// DomToolTip
|
204 |
$script = 'var domTT_styleClass = "niceTitle";'."\n";
|
205 |
$script = 'var domTT_styleClass = "niceTitle";'."\n";
|
205 |
$script .= 'function nicetitleDecorator(el) {'."\n";
|
206 |
$script .= 'function nicetitleDecorator(el) {'."\n";
|
206 |
$script .= ' var result = el.title;'."\n";
|
207 |
$script .= ' var result = el.title;'."\n";
|
207 |
$script .= ' result = result.replace(new RegExp("\n", "g"), "<br />");'."\n";
|
208 |
$script .= ' result = result.replace(new RegExp("\n", "g"), "<br />");'."\n";
|
Line 484... |
Line 485... |
484 |
$retour.= '<script type="text/javascript">//<![CDATA['."\n".$script.'//]]></script>'."\n";
|
485 |
$retour.= '<script type="text/javascript">//<![CDATA['."\n".$script.'//]]></script>'."\n";
|
485 |
// Vue detail
|
486 |
// Vue detail
|
Line 486... |
Line 487... |
486 |
|
487 |
|
487 |
if ((isset($_GET['id_fiches']))) {
|
488 |
if ((isset($_GET['id_fiches']))) {
|
488 |
// Ajout d'un titre pour la page avec la date
|
489 |
// Ajout d'un titre pour la page avec la date
|
489 |
$jours = array ('lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi', 'dimanche') ;
|
490 |
$jours = array ('dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi') ;
|
490 |
$mois = array ('janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre',
|
491 |
$mois = array ('janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre',
|
491 |
'octobre', 'novembre', 'décembre') ;
|
492 |
'octobre', 'novembre', 'décembre') ;
|
Line 492... |
Line 493... |
492 |
$timestamp = strtotime ($_GET['y'].'/'.$_GET['m'].'/'.$_GET['d']) ;
|
493 |
$timestamp = strtotime ($_GET['y'].'/'.$_GET['m'].'/'.$_GET['d']) ;
|