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: pap_script.fonct.php,v 1.3 2005-02-28 11:12:03 jpm Exp $
|
22 |
// CVS : $Id: pap_script.fonct.php,v 1.4 2007-09-06 14:45:06 neiluj Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Les fonctions permettant d'inclure des scripts.
|
24 |
* Les fonctions permettant d'inclure des scripts.
|
25 |
*
|
25 |
*
|
26 |
* Ces fonctions permettent d'inclure des scripts, éxécuté côté client, directement dans les pages
|
26 |
* Ces fonctions permettent d'inclure des scripts, éxécuté côté client, directement dans les pages
|
27 |
* des applications. Elles peuvent donc être appelées par les applications
|
27 |
* des applications. Elles peuvent donc être appelées par les applications
|
Line 33... |
Line 33... |
33 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
33 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
34 |
//Autres auteurs :
|
34 |
//Autres auteurs :
|
35 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
35 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
36 |
*@author Laurent COUDOUNEAU <lc@gsite.org>
|
36 |
*@author Laurent COUDOUNEAU <lc@gsite.org>
|
37 |
*@copyright Tela-Botanica 2000-2004
|
37 |
*@copyright Tela-Botanica 2000-2004
|
38 |
*@version $Revision: 1.3 $ $Date: 2005-02-28 11:12:03 $
|
38 |
*@version $Revision: 1.4 $ $Date: 2007-09-06 14:45:06 $
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
40 |
*/
|
40 |
*/
|
Line 41... |
Line 41... |
41 |
|
41 |
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
Line 196... |
Line 196... |
196 |
|
196 |
|
197 |
return $sortie;
|
197 |
return $sortie;
|
Line -... |
Line 198... |
- |
|
198 |
}
|
- |
|
199 |
|
- |
|
200 |
|
- |
|
201 |
/*
|
- |
|
202 |
* Ajout ou suppression des attributs de la balise BODY
|
- |
|
203 |
* (ex: pour Google MAPS)
|
- |
|
204 |
* -
|
- |
|
205 |
* pour supprimer un attribut, appeler la fonction avec un seul parametre.
|
- |
|
206 |
*/
|
- |
|
207 |
function GEN_AttributsBody($nomAttribut, $valeurAttribut = NULL)
|
- |
|
208 |
{
|
- |
|
209 |
global $_GEN_commun;
|
- |
|
210 |
|
- |
|
211 |
$_GEN_commun['attributs_body'][$nomAttribut] = $valeurAttribut;
|
- |
|
212 |
|
- |
|
213 |
if($valeurAttribut == NULL && isset($_GEN_commun['attributs_body'][$nomAttribut]))
|
198 |
}
|
214 |
unset($_GEN_commun['attributs_body'][$nomAttribut]);
|
199 |
|
215 |
}
|
200 |
|
216 |
|
- |
|
217 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
218 |
*
|
- |
|
219 |
* $Log: not supported by cvs2svn $
|
201 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
220 |
* Revision 1.3 2005/02/28 11:12:03 jpm
|
202 |
*
|
221 |
* Modification des auteurs.
|
203 |
* $Log: not supported by cvs2svn $
|
222 |
*
|
204 |
* Revision 1.2 2004/09/10 16:40:41 jpm
|
223 |
* Revision 1.2 2004/09/10 16:40:41 jpm
|
205 |
* Ajout de messages d'erreurs dans les infos de débogage.
|
224 |
* Ajout de messages d'erreurs dans les infos de débogage.
|