| 433 | ddelon | 1 | <?php
 | 
        
           |  |  | 2 | /*vim: set expandtab tabstop=4 shiftwidth=4: */
 | 
        
           |  |  | 3 | // +------------------------------------------------------------------------------------------------------+
 | 
        
           |  |  | 4 | // | PHP version 4.1                                                                                      |
 | 
        
           |  |  | 5 | // +------------------------------------------------------------------------------------------------------+
 | 
        
           |  |  | 6 | // | Copyright (C) 2005 Tela Botanica (accueil@tela-botanica.org)                                         |
 | 
        
           |  |  | 7 | // +------------------------------------------------------------------------------------------------------+
 | 
        
           |  |  | 8 | // | This file is part of Integrateur Wikini.                                                             |
 | 
        
           |  |  | 9 | // |                                                                                                      |
 | 
        
           |  |  | 10 | // | Foobar is free software; you can redistribute it and/or modify                                       |
 | 
        
           |  |  | 11 | // | it under the terms of the GNU General Public License as published by                                 |
 | 
        
           |  |  | 12 | // | the Free Software Foundation; either version 2 of the License, or                                    |
 | 
        
           |  |  | 13 | // | (at your option) any later version.                                                                  |
 | 
        
           |  |  | 14 | // |                                                                                                      |
 | 
        
           |  |  | 15 | // | Foobar is distributed in the hope that it will be useful,                                            |
 | 
        
           |  |  | 16 | // | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
 | 
        
           |  |  | 17 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
 | 
        
           |  |  | 18 | // | GNU General Public License for more details.                                                         |
 | 
        
           |  |  | 19 | // |                                                                                                      |
 | 
        
           |  |  | 20 | // | You should have received a copy of the GNU General Public License                                    |
 | 
        
           |  |  | 21 | // | along with Foobar; if not, write to the Free Software                                                |
 | 
        
           |  |  | 22 | // | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
 | 
        
           |  |  | 23 | // +------------------------------------------------------------------------------------------------------+
 | 
        
           | 832 | florian | 24 | // CVS : $Id: integrateur_wikini.php,v 1.13 2006-04-28 12:41:26 florian Exp $
 | 
        
           | 433 | ddelon | 25 | /**
 | 
        
           |  |  | 26 | * Integrateur de page Wikini
 | 
        
           |  |  | 27 | *
 | 
        
           |  |  | 28 | * Application permettant d'intégrer des pages wikini dans Papyrus.
 | 
        
           |  |  | 29 | *
 | 
        
           |  |  | 30 | *@package IntegrateurWikini
 | 
        
           |  |  | 31 | //Auteur original :
 | 
        
           |  |  | 32 | *@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
 | 
        
           |  |  | 33 | //Autres auteurs :
 | 
        
           |  |  | 34 | *@author        Aucun
 | 
        
           |  |  | 35 | *@copyright     Tela-Botanica 2000-2004
 | 
        
           | 832 | florian | 36 | *@version       $Revision: 1.13 $ $Date: 2006-04-28 12:41:26 $
 | 
        
           | 434 | ddelon | 37 | *
 | 
        
           | 433 | ddelon | 38 | // +------------------------------------------------------------------------------------------------------+
 | 
        
           |  |  | 39 | // |                                            ENTETE du PROGRAMME                                       |
 | 
        
           |  |  | 40 | // +------------------------------------------------------------------------------------------------------+
 | 
        
           | 436 | ddelon | 41 |   | 
        
           |  |  | 42 |   | 
        
           | 444 | ddelon | 43 |   | 
        
           | 439 | ddelon | 44 | /**
 | 
        
           |  |  | 45 |  * Renvoie le menu général de l'integrateur Wikini : derniers  changement etc.
 | 
        
           |  |  | 46 |  *
 | 
        
           |  |  | 47 |  * @return string
 | 
        
           |  |  | 48 |  * @access public
 | 
        
           |  |  | 49 |  */
 | 
        
           |  |  | 50 |   | 
        
           | 832 | florian | 51 | require_once 'bibliotheque/iw_integrateur.fonct.php';
 | 
        
           | 545 | ddelon | 52 |   | 
        
           |  |  | 53 |   | 
        
           | 439 | ddelon | 54 | function afficherContenuMenu()
 | 
        
           |  |  | 55 | {
 | 
        
           | 545 | ddelon | 56 | 	return afficherPageMenuWikini();
 | 
        
           | 439 | ddelon | 57 | }
 | 
        
           |  |  | 58 |   | 
        
           |  |  | 59 |   | 
        
           | 433 | ddelon | 60 | // +------------------------------------------------------------------------------------------------------+
 | 
        
           |  |  | 61 | // |                                            CORPS du PROGRAMME                                        |
 | 
        
           |  |  | 62 | // +------------------------------------------------------------------------------------------------------+
 | 
        
           |  |  | 63 | /** Fonction afficherContenuCorps() - Fonction appelé par le gestionnaire Papyrus.
 | 
        
           |  |  | 64 | *
 | 
        
           |  |  | 65 | * Elle retourne le contenu de l'application.
 | 
        
           |  |  | 66 | *
 | 
        
           |  |  | 67 | * @return  string  du code XHTML correspondant au contenu renvoyé par l'application.
 | 
        
           |  |  | 68 | */
 | 
        
           |  |  | 69 | function afficherContenuCorps()
 | 
        
           |  |  | 70 | {
 | 
        
           | 545 | ddelon | 71 | 	return afficherPageWikini();
 | 
        
           | 444 | ddelon | 72 |   | 
        
           | 433 | ddelon | 73 | }
 | 
        
           | 434 | ddelon | 74 | // TODO : qu'affiche-t-on en pied ?
 | 
        
           | 433 | ddelon | 75 | /** Fonction afficherContenuPied() - Fonction appelé par le gestionnaire Papyrus.
 | 
        
           |  |  | 76 | *
 | 
        
           |  |  | 77 | * Elle retourne le pied de l'application.
 | 
        
           |  |  | 78 | *
 | 
        
           |  |  | 79 | * @return  string  du code XHTML correspondant au pied renvoyé par l'application.
 | 
        
           |  |  | 80 | */
 | 
        
           |  |  | 81 | function afficherContenuPied()
 | 
        
           |  |  | 82 | {
 | 
        
           | 580 | ddelon | 83 |     return '';
 | 
        
           | 433 | ddelon | 84 | }
 | 
        
           |  |  | 85 | ?>
 |