Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 125 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 125 Rev 170
Line 19... Line 19...
19
// |                                                                                                      |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
23
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: recherche_nom_vernaculaire_xhtml.php,v 1.2 2005-01-28 19:47:09 jpm Exp $
24
// CVS : $Id: recherche_nom_vernaculaire_xhtml.php,v 1.3 2005-06-09 18:09:52 jpm Exp $
25
/**
25
/**
26
* Vue affichant la liste des noms vernaculaire correspondant à un radical recherché.
26
* Vue affichant la liste des noms vernaculaire correspondant à un radical recherché.
27
*
27
*
28
* Permet de retourner le html correspondant à la liste des noms vernaculaires correspondant à un radical
28
* Permet de retourner le html correspondant à la liste des noms vernaculaires correspondant à un radical
29
* recherché.
29
* recherché.
Line 33... Line 33...
33
//Auteur original :
33
//Auteur original :
34
*@author        Frédéric LEGENS <flegens@free.fr>
34
*@author        Frédéric LEGENS <flegens@free.fr>
35
//Autres auteurs :
35
//Autres auteurs :
36
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
36
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
37
*@copyright     Tela-Botanica 2000-2004
37
*@copyright     Tela-Botanica 2000-2004
38
*@version       $Revision: 1.2 $ $Date: 2005-01-28 19:47:09 $
38
*@version       $Revision: 1.3 $ $Date: 2005-06-09 18:09:52 $
39
// +------------------------------------------------------------------------------------------------------+
39
// +------------------------------------------------------------------------------------------------------+
40
*/
40
*/
Line 41... Line 41...
41
 
41
 
42
// +------------------------------------------------------------------------------------------------------+
42
// +------------------------------------------------------------------------------------------------------+
Line 74... Line 74...
74
        $retour .= '</head>'."\n";
74
        $retour .= '</head>'."\n";
Line 75... Line 75...
75
        
75
        
76
        $retour .= '<body>'."\n";
76
        $retour .= '<body>'."\n";
77
        $retour .= '<!-- BEGIN corps -->'."\n";
77
        $retour .= '<!-- BEGIN corps -->'."\n";
78
        $retour .= '<h1>'.'Liste des noms vernaculaires'.'</h1>'."\n";
78
        $retour .= '<h1>'.'Liste des noms vernaculaires'.'</h1>'."\n";
79
        $retour .= '<table>'."\n";
79
        $retour .= '<table id="eflore_table_resultat_nv">'."\n";
80
        $retour .= '<caption>';
80
        $retour .= '<caption>';
81
        $retour .= 'Liste des noms vernaculaires correspondant au radical "';
81
        $retour .= 'Liste des noms vernaculaires correspondant au radical "';
82
        $retour .= $this->leBlock->afficherPattern('FICHE_LISTE_NOMS_VERNA','afficherRadical');
82
        $retour .= $this->leBlock->afficherPattern('FICHE_LISTE_NOMS_VERNA','afficherRadical');
83
        $retour .= '"</caption>'."\n";
83
        $retour .= '"</caption>'."\n";
Line 107... Line 107...
107
 
107
 
108
function afficherNomVerna($donnees)
108
function afficherNomVerna($donnees)
109
{
109
{
110
    $retour .= '<tr>'."\n";
110
    $retour .= '<tr>'."\n";
111
    $retour .= '<td>'.$GLOBALS['num_nom_verna']++.'</td>'."\n";
111
    $retour .= '<td>'.$GLOBALS['num_nom_verna']++.'</td>'."\n";
112
    $retour .= '<td title="'.$donnees['ezg_intitule_principal_zg'].'">'.$donnees['ezg_code_zg'].'</td>'."\n";
112
    $retour .= '<td><abbr title="'.$donnees['ezg_intitule_principal_zg'].'">'.$donnees['ezg_code_zg'].'</abbr></td>'."\n";
113
    $retour .= '<td title="'.$donnees['el_nom_langue_principal'].'">'.$donnees['el_code_langue'].'</td>'."\n";
113
    $retour .= '<td><abbr title="'.$donnees['el_nom_langue_principal'].'">'.$donnees['el_code_langue'].'</abbr></td>'."\n";
-
 
114
    $retour .= '<td>'.$donnees['ev_intitule_nom_vernaculaire'].'</td>'."\n";
-
 
115
    if (isset($donnees['esn_ce_statut'])) {
-
 
116
        if ($donnees['esn_ce_statut'] == 3) {//Nom retenu
-
 
117
            $retour .= '<td><strong><a href="func_UrlFicheNom('.$donnees['en_id_nom'].', '.$donnees['et_id_version_projet_taxon'].')">'.$donnees['eni_intitule_nom'].'</a></strong></td>';
114
    $retour .= '<td>'.$donnees['ev_intitule_nom_vernaculaire'].'</td>'."\n";
118
        } else {
-
 
119
            $retour .= '<td><a href="func_UrlFicheNom('.$donnees['en_id_nom'].', '.$donnees['esn_id_version_projet_taxon'].')">'.$donnees['eni_intitule_nom'].'</a></td>';
-
 
120
        }
115
    $retour .= '<td>'.'<a href="func_UrlFicheNom('.$donnees['en_id_nom'].', '.$donnees['et_id_version_projet_taxon'].')">'.$donnees['eni_intitule_nom'].'</a></td>'."\n";
121
    }
116
    $retour .= '</tr>'."\n";
122
    $retour .= '</tr>'."\n";
117
    return $retour;
123
    return $retour;
Line 118... Line 124...
118
}
124
}
Line 123... Line 129...
123
 
129
 
124
 
130
 
125
/* +--Fin du code ----------------------------------------------------------------------------------------+
131
/* +--Fin du code ----------------------------------------------------------------------------------------+
-
 
132
*
-
 
133
* $Log: not supported by cvs2svn $
-
 
134
* Revision 1.2  2005/01/28 19:47:09  jpm
126
*
135
* Amélioration du rendu par ajout d'entité à la place des caractères posant pb et changement de l'encodage.
127
* $Log: not supported by cvs2svn $
136
*
128
* Revision 1.1  2005/01/26 10:45:33  jpm
137
* Revision 1.1  2005/01/26 10:45:33  jpm
129
* Ajout des résultats de recherche par noms vernaculaires.
138
* Ajout des résultats de recherche par noms vernaculaires.
130
*
139
*