Subversion Repositories Applications.papyrus

Compare Revisions

Regard whitespace Rev 98 → Rev 84

/trunk/papyrus/bibliotheque/fonctions/pap_verification.fonct.php
New file
0,0 → 1,65
<?php
/*vim: set expandtab tabstop=4 shiftwidth=4: */
// +------------------------------------------------------------------------------------------------------+
// | PHP version 4.1 |
// +------------------------------------------------------------------------------------------------------+
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
// +------------------------------------------------------------------------------------------------------+
// | 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 the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: pap_verification.fonct.php,v 1.1 2004-06-15 15:14:52 jpm Exp $
/**
* Bibliothèque de fonctions de vérification.
*
* Liste de fonctions utilisé dans le cadre de la vérification de Papyrus.
*
*@package Papyrus
*@subpackage Fonctions
//Auteur original :
*@author Laurent COUDOUNEAU <lc@gsite.org>
//Autres auteurs :
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.1 $ $Date: 2004-06-15 15:14:52 $
// +------------------------------------------------------------------------------------------------------+
*/
 
// +------------------------------------------------------------------------------------------------------+
// | LISTE de FONCTIONS |
// +------------------------------------------------------------------------------------------------------+
 
/**Fonction GEN_envoyerMessageErreur() - Envoie un message d'erreur et arrête le programme.
*
* Cette fonction renvoie un message d'erreur, dont les caractères spéciaux sont
* transformés en entités HTML, et termine l'execution du programme.
*
* @param string un message d'erreur.
* @return void arrête du programme avec envoie du message via la fonction exit().
*/
function GEN_envoyerMessageErreur($message)
{
exit('<strong>'.htmlentities($message).'</strong>');
}
 
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.1 2004/04/08 13:23:55 jpm
* Ajout de la bibliothèque de fonction à utiliser dans le cadre de la gestion des erreurs.
*
*
* +-- Fin du code ----------------------------------------------------------------------------------------+
*/
?>