Subversion Repositories eFlore/Archives.eflore-consultation-v2

Compare Revisions

Ignore whitespace Rev 143 → Rev 144

/trunk/serveur/eflore_mv/vues/fiche_synthese_xhtml.php
21,7 → 21,7
// | along with Foobar; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: fiche_synthese_xhtml.php,v 1.7 2005-01-28 19:46:18 jpm Exp $
// CVS : $Id: fiche_synthese_xhtml.php,v 1.8 2005-02-14 18:11:43 jpm Exp $
/**
* Vue affichant la fiche de synthèse d'un nom dans le projet donné
*
35,7 → 35,7
//Autres auteurs :
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.7 $ $Date: 2005-01-28 19:46:18 $
*@version $Revision: 1.8 $ $Date: 2005-02-14 18:11:43 $
// +------------------------------------------------------------------------------------------------------+
*/
 
372,7 → 372,7
function afficherNomCorrect($donnees, $aso_param)
{
$retour = '';
//$retour .= '<pre>'.print_r($aso_param, true).'</pre>';
//$retour .= '<pre>'.print_r($donnees, true).'</pre>';
if ($donnees['TAXON_NOMS']['esns_id_statut'] == $aso_param['statut_id']) {
$retour .= '<p><strong>'.$donnees['NOM_LATIN']['eni_intitule_nom'].'</strong></p>'."\n";
}
382,7 → 382,7
function afficherRechercheGoogle($donnees, $aso_param)
{
$retour = '';
//$retour .= '<pre>'.print_r($aso_param, true).'</pre>';
//$retour .= '<pre>'.print_r($donnees, true).'</pre>';
if ($donnees['TAXON_NOMS']['esns_id_statut'] == $aso_param['statut_id']) {
$retour .= '<form method="get" action="http://images.google.fr/images">'."\n";
$retour .= '<p>'."\n";
447,6 → 447,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.7 2005/01/28 19:46:18 jpm
* Amélioration de l'affichage des projets utilisant le noms sélectionné.
*
* Revision 1.6 2005/01/26 10:44:57 jpm
* Correction de la version de PHP.
*
/trunk/serveur/eflore_mv/vues/recherche_taxon_xhtml.php
21,7 → 21,7
// | along with Foobar; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: recherche_taxon_xhtml.php,v 1.1 2005-01-28 19:45:44 jpm Exp $
// CVS : $Id: recherche_taxon_xhtml.php,v 1.2 2005-02-14 18:11:43 jpm Exp $
/**
* Vue affichant la liste des taxons d'un projet.
*
34,7 → 34,7
//Autres auteurs :
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.1 $ $Date: 2005-01-28 19:45:44 $
*@version $Revision: 1.2 $ $Date: 2005-02-14 18:11:43 $
// +------------------------------------------------------------------------------------------------------+
*/
 
92,11 → 92,12
 
function afficherTaxon($donnees)
{
$retour = '<li><a href="{UrlFicheNom}'.$donnees['en_id_nom'].'">';
if (!empty($donnees['eni_intitule_nom'])) {
$retour .= $donnees['eni_intitule_nom'];
}
$retour .= '</a></li>'."\n";
//echo '<pre>'.print_r($donnees, true).'</pre>';
$retour = '<li><a href="func_remplacerUrlClassif('.$donnees['esn_id_taxon'].')">';
$retour .= '<img src="#" alt="+"/>';
$retour .= '</a><a id="eflore_taxon_'.$donnees['esn_id_taxon'].'" href="{UrlFicheNom}'.$donnees['en_id_nom'].'">';
$retour .= $donnees['eni_intitule_nom'];
$retour .= '</a>func_ajouterArboressenceClassif('.$donnees['esn_id_taxon'].')</li>'."\n";
return $retour;
}
 
108,7 → 109,10
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.1 2005/01/28 19:45:44 jpm
* Début recheche taxons.
*
*
* +-- Fin du code ----------------------------------------------------------------------------------------+
*/
?>
/trunk/serveur/eflore_mv/vues/recherche_classif_xhtml.php
21,7 → 21,7
// | along with Foobar; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: recherche_classif_xhtml.php,v 1.1 2005-02-09 13:07:16 jpm Exp $
// CVS : $Id: recherche_classif_xhtml.php,v 1.2 2005-02-14 18:11:43 jpm Exp $
/**
* Vue affichant la liste des taxons d'un projet.
*
34,7 → 34,7
//Autres auteurs :
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.1 $ $Date: 2005-02-09 13:07:16 $
*@version $Revision: 1.2 $ $Date: 2005-02-14 18:11:43 $
// +------------------------------------------------------------------------------------------------------+
*/
 
74,7 → 74,9
$retour .= '<body>'."\n";
$retour .= '<!-- BEGIN corps -->'."\n";
$retour .= '<h1>'.'Liste des taxons'.'</h1>'."\n";
$retour .= '<!-- BEGIN liste -->'."\n";
$retour .= $this->leBlock->afficherPatternRecursivement('afficherTaxon', 'TAXON_RECHERCHE_CLASSIFICATION');
$retour .= '<!-- END liste -->'."\n";
$retour .= '<!-- END corps -->'."\n";
$retour .= '</body>'."\n";
$retour .= '</html>'."\n";
93,7 → 95,9
//echo '<pre>'.print_r($donnees, true).'</pre>';
if (isset($donnees['eni_intitule_nom'])) {
if (!empty($donnees['eni_intitule_nom'])) {
$retour .= '<li><a href="{UrlFicheNom}'.$donnees['en_id_nom'].'">';
$retour .= '<a href="func_remplacerUrlClassif('.$donnees['etr_id_taxon_1'].')">';
$retour .= '<img src="#" alt="+"/>';
$retour .= '</a><a id="eflore_taxon_'.$donnees['etr_id_taxon_1'].'" href="{UrlFicheNom}'.$donnees['en_id_nom'].'">';
$retour .= $donnees['eni_intitule_nom'];
$retour .= '</a>'."\n";
109,6 → 113,8
$retour .= '<ol>'."\n";
$retour .= $retour_tax;
$retour .= '</ol>'."\n";
} else {
$retour .= 'func_ajouterArboressenceClassif('.$donnees['etr_id_taxon_1'].')';
}
$retour .= '</li>'."\n";
118,7 → 124,10
foreach ($donnees as $cle0 => $valeur0) {
if (strstr($cle0, $parametre)) {
if (!empty($valeur0['eni_intitule_nom'])) {
$retour .= '<li><a href="{UrlFicheNom}'.$valeur0['en_id_nom'].'">';
$retour .= '<li>'."\n";
$retour .= '<a href="func_remplacerUrlClassif('.$valeur0['etr_id_taxon_1'].')">';
$retour .= '<img src="#" alt="+"/>';
$retour .= '</a><a id="eflore_taxon_'.$valeur0['etr_id_taxon_1'].'" href="{UrlFicheNom}'.$valeur0['en_id_nom'].'">';
$retour .= $valeur0['eni_intitule_nom'];
$retour .= '</a>'."\n";
134,6 → 143,8
$retour .= '<ol>'."\n";
$retour .= $retour_tax;
$retour .= '</ol>'."\n";
} else {
$retour .= 'func_ajouterArboressenceClassif('.$valeur0['etr_id_taxon_1'].')';
}
$retour .= '</li>'."\n";
153,6 → 164,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.1 2005/02/09 13:07:16 jpm
* Permet de voir la classification d'un taxon.
*
* Revision 1.1 2005/01/28 19:45:44 jpm
* Début recheche taxons.
*