Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 5 → Rev 6

/trunk/eflore.php
19,7 → 19,7
// | 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: eflore.php,v 1.1 2004-06-17 13:11:29 linda Exp $
// CVS : $Id: eflore.php,v 1.2 2004-06-17 15:20:39 linda Exp $
/**
* Application de consultation des données d'eFlore.
*
36,7 → 36,7
//Autres auteurs :
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.1 $ $Date: 2004-06-17 13:11:29 $
*@version $Revision: 1.2 $ $Date: 2004-06-17 15:20:39 $
// +------------------------------------------------------------------------------------------------------+
*/
 
44,6 → 44,9
// | ENTÊTE du PROGRAMME |
// +------------------------------------------------------------------------------------------------------+
/*Mettre ici les inclusions de fichiers*/
/** <br> Inclusion du fichier config de l'application eflore. */
require_once GEN_CHEMIN_CLIENT.'eflore/configuration/eflore_config.inc.php';
 
/** <br> Inclusion de la classe PEAR d'abstraction de base de donnée. */
require_once 'DB.php';
 
57,13 → 60,23
 
function afficherContenuTete()
{
$sortie = '<p><a href="#">Nomenclature</a><a href="photo.php">Illustration</a></p>';
$sortie = '<p><a href="#">Nomenclature </a><a href="papyrus.php?site=3&menu=39&onglet=photo">Illustration</a></p>';
return $sortie;
}
 
function afficherContenuCorps()
{
$onglet = $_GET['onglet'];
if (!isset($onglet))
{
$sortie = "";
}
elseif($onglet=='photo')
{
include_once GEN_CHEMIN_CLIENT.'eflore/eflore_photo.inc.php';
$sortie=$res;
}
return $sortie;
}