131 lines
4.9 KiB
PHP
Executable File
131 lines
4.9 KiB
PHP
Executable File
<?php
|
|
|
|
/*
|
|
Licence et conditions d'utilisations-----------------------------------------------------------------------------
|
|
|
|
-English---------------------------------------------------------------------------------------------------------
|
|
Copyright (C) 2001-2004 Thierry ANDRE
|
|
- ORIGINAL AUTHOR
|
|
- ANDRE thierry
|
|
|
|
- CURRENT MAINTAINER
|
|
- TRICHARD Rémy
|
|
|
|
- ADDING
|
|
- VILDAY Laurent.
|
|
- MOULRON Diogène.
|
|
- DELVILLE Romain.
|
|
- BOUCHERY Frederic.
|
|
- PERRICHOT Florian.
|
|
- RODIER Phillipe.
|
|
- HOUZE Sébastien.
|
|
- DECLEE Frédéric.
|
|
- HORDEAUX Sébastien.
|
|
- LELARGE Guillaume.
|
|
- GAUTHIER Jérémy.
|
|
- CASANOVA Matthieu.
|
|
- KELLER Christophe.
|
|
- MARK HUMPHREYS Aidan.
|
|
- KELLUM Patrick.
|
|
- DE CORNUAUD Sébastien.
|
|
- PIEL Régis.
|
|
- LE LOARER Loïc.
|
|
- TRICHARD Rémy
|
|
|
|
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General
|
|
Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option)
|
|
any later version.
|
|
|
|
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to :
|
|
|
|
Free Software Foundation,
|
|
Inc., 59 Temple Place,
|
|
Suite 330, Boston,
|
|
MA 02111-1307, Etats-Unis.
|
|
------------------------------------------------------------------------------------------------------------------
|
|
|
|
-Français---------------------------------------------------------------------------------------------------------
|
|
|
|
ModeliXe est distribué sous licence LGPL, merci de laisser cette en-tête, gage et garantie de cette licence.
|
|
ModeliXe est un moteur de template destiné à être utilisé par des applications écrites en PHP.
|
|
ModeliXe peut être utilisé dans des scripts vendus à des tiers aux titres de la licence LGPL. ModeliXe n'en reste
|
|
pas moins OpenSource et libre de droits en date du 23 Août 2001.
|
|
|
|
Copyright (C) 2001-2004 Thierry ANDRE
|
|
|
|
- Auteur original
|
|
- ANDRE thierry
|
|
|
|
- Mainteneur actuel du projet
|
|
- TRICHARD Rémy
|
|
|
|
- Ajouts
|
|
- VILDAY Laurent.
|
|
- MOULRON Diogène.
|
|
- DELVILLE Romain.
|
|
- BOUCHERY Frederic.
|
|
- PERRICHOT Florian.
|
|
- RODIER Phillipe.
|
|
- HOUZE Sébastien.
|
|
- DECLEE Frédéric.
|
|
- HORDEAUX Sébastien.
|
|
- LELARGE Guillaume.
|
|
- GAUTHIER Jérémy.
|
|
- CASANOVA Matthieu.
|
|
- KELLER Christophe.
|
|
- MARK HUMPHREYS Aidan.
|
|
- KELLUM Patrick.
|
|
- DE CORNUAUD Sébastien.
|
|
- PIEL Régis.
|
|
- LE LOARER Loïc.
|
|
- TRICHARD Rémy
|
|
|
|
Cette bibliothèque est libre, vous pouvez la redistribuer et/ou la modifier selon les termes de la Licence Publique
|
|
Générale GNU Limitée publiée par la Free Software Foundation version 2.1 et ultérieure.
|
|
|
|
Cette bibliothèque est distribuée car potentiellement utile, mais SANS AUCUNE GARANTIE, ni explicite ni implicite,
|
|
y compris les garanties de commercialisation ou d'adaptation dans un but spécifique. Reportez-vous à la Licence
|
|
Publique Générale GNU Limitée pour plus de détails.
|
|
|
|
Vous devez avoir reçu une copie de la Licence Publique Générale GNU Limitée en même temps que cette bibliothèque;
|
|
si ce n'est pas le cas, écrivez à:
|
|
|
|
Free Software Foundation,
|
|
Inc., 59 Temple Place,
|
|
Suite 330, Boston,
|
|
MA 02111-1307, Etats-Unis.
|
|
|
|
Pour tout renseignements mailez à modelixe@free.fr ou tungsten180@hotmail.com
|
|
--------------------------------------------------------------------------------------------------------------------
|
|
*/
|
|
/**
|
|
*
|
|
*/
|
|
include_once("modelixe.php");
|
|
|
|
/**
|
|
* @package system_template
|
|
*/
|
|
class ModeliXe2 extends ModeliXe
|
|
{
|
|
|
|
function ModeliXe2 ()
|
|
{
|
|
|
|
}
|
|
|
|
//Cette fonction aide à utiliser ModeliXe 2 fois de suite
|
|
//sur 2 fichiers différents. Pour cela, il suffit d'utiliser
|
|
//MxEnd() après MxWrite() pour rendre de nouveau l'objet
|
|
//ModeliXe utilisable avec un autre fichier.
|
|
|
|
function MxEnd ()
|
|
{
|
|
$this->mXsetting = false;
|
|
}
|
|
}
|
|
?>
|