Rev 162 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 162 | Rev 168 | ||
---|---|---|---|
Line 19... | Line 19... | ||
19 | // | |
|
19 | // | |
|
Line 20... | Line 20... | ||
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 |
|
Line 21... | Line 21... | ||
21 | // | along with Foobar; if not, write to the Free Software |
|
21 | // | along with Foobar; if not, write to the Free Software |
|
Line 22... | Line 22... | ||
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 |
|
Line 23... | Line 23... | ||
23 | // +------------------------------------------------------------------------------------------------------+
|
23 | // +------------------------------------------------------------------------------------------------------+
|
Line 24... | Line -... | ||
24 | // CVS : $Id: eflore_recherche_nomenclature.inc.php,v 1.9 2005-03-15 12:57:16 jpm Exp $
|
- | |
Line -... | Line 24... | ||
- | 24 | // CVS : $Id: eflore_recherche_nomenclature.inc.php,v 1.10 2005-05-19 07:40:06 jpm Exp $
|
|
Line 25... | Line 25... | ||
25 | /**
|
25 | /**
|
Line 26... | Line 26... | ||
26 | * Affichage du moteur de recherche nomenclatural et de ses résultats.
|
26 | * Affichage du moteur de recherche nomenclatural et de ses résultats.
|
Line 27... | Line 27... | ||
27 | *
|
27 | *
|
Line 28... | Line 28... | ||
28 | * Ce script fournit le code html correspondant aux moteurs de recherche nomenclatural et ses résultats.
|
28 | * Ce script fournit le code html correspondant aux moteurs de recherche nomenclatural et ses résultats.
|
Line 29... | Line 29... | ||
29 | *
|
29 | *
|
Line 31... | Line 31... | ||
31 | //Auteur original :
|
31 | //Auteur original :
|
Line 32... | Line 32... | ||
32 | *@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
32 | *@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
Line 33... | Line 33... | ||
33 | //Autres auteurs :
|
33 | //Autres auteurs :
|
Line 34... | Line 34... | ||
34 | *@author Aucun
|
34 | *@author Aucun
|
Line 35... | Line 35... | ||
35 | *@copyright Tela-Botanica 2000-2004
|
35 | *@copyright Tela-Botanica 2000-2004
|
Line 36... | Line -... | ||
36 | *@version $Revision: 1.9 $ $Date: 2005-03-15 12:57:16 $
|
- | |
Line -... | Line 36... | ||
- | 36 | *@version $Revision: 1.10 $ $Date: 2005-05-19 07:40:06 $
|
|
Line 37... | Line 37... | ||
37 | // +------------------------------------------------------------------------------------------------------+
|
37 | // +------------------------------------------------------------------------------------------------------+
|
Line 38... | Line 38... | ||
38 | */
|
38 | */
|
Line 39... | Line 39... | ||
39 | 39 | ||
Line 40... | Line 40... | ||
40 | // +------------------------------------------------------------------------------------------------------+
|
40 | // +------------------------------------------------------------------------------------------------------+
|
Line 41... | Line 41... | ||
41 | // | ENTÊTE du PROGRAMME |
|
41 | // | ENTÊTE du PROGRAMME |
|
Line 74... | Line 74... | ||
74 | 74 | ||
Line 75... | Line 75... | ||
75 | $partie_menu_debut = '<fieldset>'."\n".'<legend>'.EFLORE_LG_RECH_NOM_FORM_TITRE.'</legend><ul>'."\n"; |
75 | $partie_menu_debut = '<fieldset>'."\n".'<legend>'.EFLORE_LG_RECH_NOM_FORM_TITRE.'</legend><ul>'."\n"; |
Line 76... | Line 76... | ||
76 | $eflore_form->addElement('html', $partie_menu_debut); |
76 | $eflore_form->addElement('html', $partie_menu_debut); |
Line 77... | Line 77... | ||
77 | 77 | ||
Line 78... | Line 78... | ||
78 | $id = 'eflore_nom'; |
78 | $id = 'eflore_nom'; |
Line 79... | Line -... | ||
79 | $aso_attributs = array( 'id'=>$id, 'class' => 'champ', 'tabindex' => $tab_index++, |
- | |
Line -... | Line 79... | ||
- | 79 | $aso_attributs = array( 'id'=> $id, 'class' => 'champ', 'tabindex' => $tab_index++, |
|
Line 80... | Line 80... | ||
80 | 'size' => EFLORE_RECH_NOM_FORM_NOM_SIZE, |
80 | 'size' => EFLORE_RECH_NOM_FORM_NOM_SIZE, |
Line 81... | Line 81... | ||
81 | 'maxlength' => EFLORE_RECH_NOM_FORM_NOM_MAXLENGTH, |
81 | 'maxlength' => EFLORE_RECH_NOM_FORM_NOM_MAXLENGTH, |
Line 82... | Line 82... | ||
82 | 'onclick' => "javascript: this.value='';"); |
82 | 'onclick' => "javascript: this.value='';"); |
Line 83... | Line 83... | ||
83 | $label = '<label for="'.$id.'">'.EFLORE_LG_RECH_NOM_FORM_NOM.'</label>'; |
83 | $label = '<label for="'.$id.'">'.EFLORE_LG_RECH_NOM_FORM_NOM.'</label>'; |
Line 84... | Line 84... | ||
84 | $eflore_form->addElement('text', $id, $label, $aso_attributs); |
84 | $eflore_form->addElement('text', $id, $label, $aso_attributs); |
Line 178... | Line 178... | ||
178 | }
|
178 | }
|
Line 179... | Line 179... | ||
179 | 179 | ||
Line 180... | Line 180... | ||
180 | /* +--Fin du code ----------------------------------------------------------------------------------------+
|
180 | /* +--Fin du code ----------------------------------------------------------------------------------------+
|
Line 181... | Line 181... | ||
181 | *
|
181 | *
|
Line 182... | Line 182... | ||
182 | * $Log: not supported by cvs2svn $
|
182 | * $Log: not supported by cvs2svn $
|
Line -... | Line 183... | ||
- | 183 | * Revision 1.9 2005/03/15 12:57:16 jpm
|
|
Line -... | Line 184... | ||
- | 184 | * Modification du code XHTML.
|
|
Line -... | Line 185... | ||
- | 185 | *
|
|
Line 183... | Line 186... | ||
183 | * Revision 1.8 2005/02/28 15:38:47 jpm
|
186 | * Revision 1.8 2005/02/28 15:38:47 jpm
|
Line 184... | Line 187... | ||
184 | * Correction erreur due à un changement de nom.
|
187 | * Correction erreur due à un changement de nom.
|
Line 185... | Line 188... | ||
185 | *
|
188 | *
|
Line 186... | Line 189... | ||
186 | * Revision 1.7 2005/02/23 12:39:27 jpm
|
189 | * Revision 1.7 2005/02/23 12:39:27 jpm
|
Line 187... | Line 190... | ||
187 | * Correction bogue lié à QuickForm.
|
190 | * Correction bogue lié à QuickForm.
|