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: eflore_recherche_nomenclature.inc.php,v 1.6 2005-02-22 19:27:10 jpm Exp $
|
24 |
// CVS : $Id: eflore_recherche_nomenclature.inc.php,v 1.7 2005-02-23 12:39:27 jpm Exp $
|
25 |
/**
|
25 |
/**
|
26 |
* Affichage du moteur de recherche nomenclatural et de ses résultats.
|
26 |
* Affichage du moteur de recherche nomenclatural et de ses résultats.
|
27 |
*
|
27 |
*
|
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.
|
29 |
*
|
29 |
*
|
Line 31... |
Line 31... |
31 |
//Auteur original :
|
31 |
//Auteur original :
|
32 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
32 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
33 |
//Autres auteurs :
|
33 |
//Autres auteurs :
|
34 |
*@author Aucun
|
34 |
*@author Aucun
|
35 |
*@copyright Tela-Botanica 2000-2004
|
35 |
*@copyright Tela-Botanica 2000-2004
|
36 |
*@version $Revision: 1.6 $ $Date: 2005-02-22 19:27:10 $
|
36 |
*@version $Revision: 1.7 $ $Date: 2005-02-23 12:39:27 $
|
37 |
// +------------------------------------------------------------------------------------------------------+
|
37 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
*/
|
38 |
*/
|
Line 39... |
Line 39... |
39 |
|
39 |
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
Line 60... |
Line 60... |
60 |
// Ajout du paramêtre action à l'url courante.
|
60 |
// Ajout du paramêtre action à l'url courante.
|
61 |
$GLOBALS['_EFLORE_']['url']->addQueryString(EFLORE_LG_URL_ACTION, EFLORE_LG_URL_ACTION_RECH_NOM);
|
61 |
$GLOBALS['_EFLORE_']['url']->addQueryString(EFLORE_LG_URL_ACTION, EFLORE_LG_URL_ACTION_RECH_NOM);
|
62 |
// Notes : Quickform semble remplacer les & des & à nouveau par des & solution utiliser str_replace()...
|
62 |
// Notes : Quickform semble remplacer les & des & à nouveau par des & solution utiliser str_replace()...
|
63 |
$eflore_form = new HTML_QuickForm('eflore_form_nomenclature', 'post', str_replace('&', '&', $GLOBALS['_EFLORE_']['url']->getUrl()));
|
63 |
$eflore_form = new HTML_QuickForm('eflore_form_nomenclature', 'post', str_replace('&', '&', $GLOBALS['_EFLORE_']['url']->getUrl()));
|
64 |
$tab_index = EFLORE_RECH_NOM_FORM_TAB;
|
64 |
$tab_index = EFLORE_RECH_NOM_FORM_TAB;
|
65 |
$eflore_squelette = $eflore_form->defaultRenderer();
|
65 |
$eflore_squelette =& $eflore_form->defaultRenderer();
|
66 |
$eflore_squelette->setFormTemplate("\n".'<form{attributes}>'."\n".'{content}'."\n".'</form>');
|
66 |
$eflore_squelette->setFormTemplate("\n".'<form{attributes}>'."\n".'{content}'."\n".'</form>');
|
67 |
$eflore_squelette->setElementTemplate( '<li>'."\n".
|
67 |
$eflore_squelette->setElementTemplate( '<li>'."\n".
|
68 |
'{label}'."\n".
|
68 |
'{label}'."\n".
|
69 |
'{element}'."\n".
|
69 |
'{element}'."\n".
|
70 |
'<!-- BEGIN required --><span class="symbole_obligatoire">'.EFLORE_LG_FORM_SYMBOLE_OBLIGATOIRE.'</span><!-- END required -->'."\n".
|
70 |
'<!-- BEGIN required --><span class="symbole_obligatoire">'.EFLORE_LG_FORM_SYMBOLE_OBLIGATOIRE.'</span><!-- END required -->'."\n".
|
Line 176... |
Line 176... |
176 |
}
|
176 |
}
|
Line 177... |
Line 177... |
177 |
|
177 |
|
178 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
178 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
179 |
*
|
179 |
*
|
- |
|
180 |
* $Log: not supported by cvs2svn $
|
- |
|
181 |
* Revision 1.6 2005/02/22 19:27:10 jpm
|
- |
|
182 |
* Changement de nom de variables.
|
- |
|
183 |
* Suppression de l'attribut nam de la balise form via une méthode de HTML_Common.
|
180 |
* $Log: not supported by cvs2svn $
|
184 |
*
|
181 |
* Revision 1.5 2005/02/22 17:43:53 jpm
|
185 |
* Revision 1.5 2005/02/22 17:43:53 jpm
|
182 |
* Suppression de référence posant problème.
|
186 |
* Suppression de référence posant problème.
|
183 |
*
|
187 |
*
|
184 |
* Revision 1.4 2005/02/15 13:00:23 jpm
|
188 |
* Revision 1.4 2005/02/15 13:00:23 jpm
|