Subversion Repositories Applications.bazar

Rev

Rev 263 | Rev 279 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 263 Rev 267
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.20 2007-06-25 12:15:06 alexandre_tb Exp $
22
// CVS : $Id: bazar.fonct.cal.php,v 1.21 2007-06-25 14:46:10 florian 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.20 $ $Date: 2007-06-25 12:15:06 $
32
*@version       $Revision: 1.21 $ $Date: 2007-06-25 14:46:10 $
33
// +------------------------------------------------------------------------------------------------------+
33
// +------------------------------------------------------------------------------------------------------+
34
*/
34
*/
Line 35... Line 35...
35
 
35
 
36
// +------------------------------------------------------------------------------------------------------+
36
// +------------------------------------------------------------------------------------------------------+
Line 74... Line 74...
74
	unset($tab_arguments[0]);
74
	unset($tab_arguments[0]);
75
	if (is_array($tab_arguments)) {
75
	if (is_array($tab_arguments)) {
76
	    foreach($tab_arguments as $argument) {
76
	    foreach($tab_arguments as $argument) {
77
	    	if ($argument != '') {
77
	    	if ($argument != '') {
78
		    	$tab_parametres = explode('=', $argument, 2);
78
		    	$tab_parametres = explode('=', $argument, 2);
-
 
79
		    	if (is_array($tab_parametres)) {
-
 
80
		    		$options[$tab_parametres[0]] = 
79
		    	$options[$tab_parametres[0]] = trim($tab_parametres[1], '"');
81
		    		(isset($tab_parametres[1])? trim($tab_parametres[1], '"') : '') ;		    		
-
 
82
		    	}
80
	    	}
83
	    	}
81
	    }
84
	    }
82
	}
85
	}
Line 83... Line 86...
83
    
86