1 |
<?php
|
1 |
<?php
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
4 |
// | PHP version 4.1 |
|
4 |
// | PHP version 4.1 |
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
8 |
// | This file is part of Papyrus. |
|
8 |
// | This file is part of Papyrus. |
|
9 |
// | |
|
9 |
// | |
|
10 |
// | Foobar is free software; you can redistribute it and/or modify |
|
10 |
// | Foobar is free software; you can redistribute it and/or modify |
|
11 |
// | it under the terms of the GNU General Public License as published by |
|
11 |
// | it under the terms of the GNU General Public License as published by |
|
12 |
// | the Free Software Foundation; either version 2 of the License, or |
|
12 |
// | the Free Software Foundation; either version 2 of the License, or |
|
13 |
// | (at your option) any later version. |
|
13 |
// | (at your option) any later version. |
|
14 |
// | |
|
14 |
// | |
|
15 |
// | Foobar is distributed in the hope that it will be useful, |
|
15 |
// | Foobar is distributed in the hope that it will be useful, |
|
16 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
16 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
17 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 |
// | GNU General Public License for more details. |
|
18 |
// | GNU General Public License for more details. |
|
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: moteur_recherche.php,v 1.2 2005-02-22 17:44:03 jpm Exp $
|
24 |
// CVS : $Id: moteur_recherche.php,v 1.3 2005-02-22 19:27:21 jpm Exp $
|
25 |
/**
|
25 |
/**
|
26 |
* Applette : moteur de recherche
|
26 |
* Applette : moteur de recherche
|
27 |
*
|
27 |
*
|
28 |
* Génère un formulaire contenant une zone de saisie permettant de taper un texte à rechercher sur l'ensemble
|
28 |
* Génère un formulaire contenant une zone de saisie permettant de taper un texte à rechercher sur l'ensemble
|
29 |
* des sites gérés par Papyrus.
|
29 |
* des sites gérés par Papyrus.
|
30 |
*
|
30 |
*
|
31 |
*@package Applette
|
31 |
*@package Applette
|
32 |
*@subpackage Moteur_recherche
|
32 |
*@subpackage Moteur_recherche
|
33 |
//Auteur original :
|
33 |
//Auteur original :
|
34 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
34 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
35 |
//Autres auteurs :
|
35 |
//Autres auteurs :
|
36 |
*@author Aucun
|
36 |
*@author Aucun
|
37 |
*@copyright Tela-Botanica 2000-2004
|
37 |
*@copyright Tela-Botanica 2000-2004
|
38 |
*@version $Revision: 1.2 $ $Date: 2005-02-22 17:44:03 $
|
38 |
*@version $Revision: 1.3 $ $Date: 2005-02-22 19:27:21 $
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
40 |
*/
|
40 |
*/
|
41 |
|
41 |
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
43 |
// | ENTETE du PROGRAMME |
|
43 |
// | ENTETE du PROGRAMME |
|
44 |
// +------------------------------------------------------------------------------------------------------+
|
44 |
// +------------------------------------------------------------------------------------------------------+
|
45 |
$_GEN_commun['info_applette_nom_fonction'] = 'afficherMoteurRecherche';
|
45 |
$_GEN_commun['info_applette_nom_fonction'] = 'afficherMoteurRecherche';
|
46 |
$_GEN_commun['info_applette_balise'] = 'MOTEUR_RECHERCHE';
|
46 |
$_GEN_commun['info_applette_balise'] = 'MOTEUR_RECHERCHE';
|
47 |
|
47 |
|
48 |
// --------------------------------------------------------------------------------------------------------
|
48 |
// --------------------------------------------------------------------------------------------------------
|
49 |
/** Inclusion du fichier de configuration de cette application.*/
|
49 |
/** Inclusion du fichier de configuration de cette application.*/
|
50 |
require_once GEN_CHEMIN_APPLETTE.'moteur_recherche/configuration/more_configuration.inc.php';
|
50 |
require_once GEN_CHEMIN_APPLETTE.'moteur_recherche/configuration/more_configuration.inc.php';
|
51 |
/** Inclusion de la bibliotheque permettant d'accéder aux fonctions sur les balises Meta.*/
|
51 |
/** Inclusion de la bibliotheque permettant d'accéder aux fonctions sur les balises Meta.*/
|
52 |
//require_once GEN_CHEMIN_BIBLIO.'pap_meta.fonct.php';
|
52 |
//require_once GEN_CHEMIN_BIBLIO.'pap_meta.fonct.php';
|
53 |
//Utilisation de la bibliothèque PEAR NET_URL
|
53 |
//Utilisation de la bibliothèque PEAR NET_URL
|
54 |
/** Inclusion de la bibliothèque PEAR de conception de formulaire.*/
|
54 |
/** Inclusion de la bibliothèque PEAR de conception de formulaire.*/
|
55 |
require_once MORE_CHEMIN_BIBLIOTHEQUE_PEAR.'HTML/QuickForm.php';
|
55 |
require_once MORE_CHEMIN_BIBLIOTHEQUE_PEAR.'HTML/QuickForm.php';
|
- |
|
56 |
/** Inclusion de la bibliothèque PEAR de modification des squelettes des formulaires QuickForm.*/
|
- |
|
57 |
require_once 'HTML/QuickForm/Renderer/Default.php';
|
56 |
|
58 |
|
57 |
// Inclusion des fichiers de traduction de l'appli ADME dePapyrus
|
59 |
// Inclusion des fichiers de traduction de l'appli ADME dePapyrus
|
58 |
if (file_exists(MORE_CHEMIN_LANGUE.'more_langue_'.$_GEN_commun['i18n'].'.inc.php')) {
|
60 |
if (file_exists(MORE_CHEMIN_LANGUE.'more_langue_'.$_GEN_commun['i18n'].'.inc.php')) {
|
59 |
/** Inclusion du fichier de traduction suite à la transaction avec le navigateur.*/
|
61 |
/** Inclusion du fichier de traduction suite à la transaction avec le navigateur.*/
|
60 |
require_once MORE_CHEMIN_LANGUE.'more_langue_'.$_GEN_commun['i18n'].'.inc.php';
|
62 |
require_once MORE_CHEMIN_LANGUE.'more_langue_'.$_GEN_commun['i18n'].'.inc.php';
|
61 |
} else {
|
63 |
} else {
|
62 |
/** Inclusion du fichier de traduction par défaut.*/
|
64 |
/** Inclusion du fichier de traduction par défaut.*/
|
63 |
require_once MORE_CHEMIN_LANGUE.'more_langue_'.MORE_I18N_DEFAUT.'.inc.php';
|
65 |
require_once MORE_CHEMIN_LANGUE.'more_langue_'.MORE_I18N_DEFAUT.'.inc.php';
|
64 |
}
|
66 |
}
|
65 |
|
67 |
|
66 |
// +------------------------------------------------------------------------------------------------------+
|
68 |
// +------------------------------------------------------------------------------------------------------+
|
67 |
// | CORPS du PROGRAMME |
|
69 |
// | CORPS du PROGRAMME |
|
68 |
// +------------------------------------------------------------------------------------------------------+
|
70 |
// +------------------------------------------------------------------------------------------------------+
|
69 |
|
71 |
|
70 |
if (isset($_POST['more_motif']) && $_POST['more_motif'] != '') {
|
72 |
if (isset($_POST['more_motif']) && $_POST['more_motif'] != '') {
|
71 |
// Initialisation de variable extérieures
|
73 |
// Initialisation de variable extérieures
|
72 |
$GLOBALS['_VEI_']['usurpation'] = 'Recherche de '.$_POST['more_motif'];
|
74 |
$GLOBALS['_VEI_']['usurpation'] = 'Recherche de '.$_POST['more_motif'];
|
73 |
$GLOBALS['_GEN_commun']['info_menu'] = null;
|
75 |
$GLOBALS['_GEN_commun']['info_menu'] = null;
|
74 |
$GLOBALS['_PAPYRUS_']['general']['application_chemin'] = null;
|
76 |
$GLOBALS['_PAPYRUS_']['general']['application_chemin'] = null;
|
75 |
// Titre de la page
|
77 |
// Titre de la page
|
76 |
$GLOBALS['_PAPYRUS_']['rendu']['TITRE_PAGE'] = 'Résultat de la recherche de '.$_POST['more_motif'];
|
78 |
$GLOBALS['_PAPYRUS_']['rendu']['TITRE_PAGE'] = 'Résultat de la recherche de '.$_POST['more_motif'];
|
77 |
// Modification des meta de l'entête de la page
|
79 |
// Modification des meta de l'entête de la page
|
78 |
GEN_modifierMetaHttpEquiv('Content-Type', 'text/html; charset=iso-8859-15');
|
80 |
GEN_modifierMetaHttpEquiv('Content-Type', 'text/html; charset=iso-8859-15');
|
79 |
GEN_modifierMetaHttpEquiv('Content-style-type', 'text/css');
|
81 |
GEN_modifierMetaHttpEquiv('Content-style-type', 'text/css');
|
80 |
GEN_modifierMetaHttpEquiv('Content-script-type', 'text/javascript');
|
82 |
GEN_modifierMetaHttpEquiv('Content-script-type', 'text/javascript');
|
81 |
GEN_modifierMetaHttpEquiv('Content-language', $_GEN_commun['i18n']);
|
83 |
GEN_modifierMetaHttpEquiv('Content-language', $_GEN_commun['i18n']);
|
82 |
|
84 |
|
83 |
GEN_modifierMetaName('revisit-after', '15 days');
|
85 |
GEN_modifierMetaName('revisit-after', '15 days');
|
84 |
GEN_modifierMetaName('robots', 'index,follow');
|
86 |
GEN_modifierMetaName('robots', 'index,follow');
|
85 |
GEN_modifierMetaName('author', 'Tela Botanica');
|
87 |
GEN_modifierMetaName('author', 'Tela Botanica');
|
86 |
GEN_modifierMetaName('keywords', 'Recherche, résultat.');
|
88 |
GEN_modifierMetaName('keywords', 'Recherche, résultat.');
|
87 |
GEN_modifierMetaName('description', 'Page de résultats du moteur de recherche de Papyrus.');
|
89 |
GEN_modifierMetaName('description', 'Page de résultats du moteur de recherche de Papyrus.');
|
88 |
|
90 |
|
89 |
GEN_viderMeta('dc');
|
91 |
GEN_viderMeta('dc');
|
90 |
}
|
92 |
}
|
91 |
|
93 |
|
92 |
// +------------------------------------------------------------------------------------------------------+
|
94 |
// +------------------------------------------------------------------------------------------------------+
|
93 |
// | LISTE de FONCTIONS |
|
95 |
// | LISTE de FONCTIONS |
|
94 |
// +------------------------------------------------------------------------------------------------------+
|
96 |
// +------------------------------------------------------------------------------------------------------+
|
95 |
|
97 |
|
96 |
/** Fonnction afficherMoteurRecherche() - Fournit un formulaire de recherche.
|
98 |
/** Fonnction afficherMoteurRecherche() - Fournit un formulaire de recherche.
|
97 |
*
|
99 |
*
|
98 |
* Renvoie un formulaire permettant de rechercher une chaine de caractères dans les sites
|
100 |
* Renvoie un formulaire permettant de rechercher une chaine de caractères dans les sites
|
99 |
* gérés par Papyrus.
|
101 |
* gérés par Papyrus.
|
100 |
* Necessite l'utilisation de Pear Net_URL par le programme appelant cette fonction.
|
102 |
* Necessite l'utilisation de Pear Net_URL par le programme appelant cette fonction.
|
101 |
*
|
103 |
*
|
102 |
* @param array tableau d'éventuel arguments présent dans la balise transmis à la fonction.
|
104 |
* @param array tableau d'éventuel arguments présent dans la balise transmis à la fonction.
|
103 |
* @param array tableau global de Papyrus.
|
105 |
* @param array tableau global de Papyrus.
|
104 |
* @return string formulaire XHTML de recherche.
|
106 |
* @return string formulaire XHTML de recherche.
|
105 |
*/
|
107 |
*/
|
106 |
function afficherMoteurRecherche($tab_applette_arguments, $_GEN_commun)
|
108 |
function afficherMoteurRecherche($tab_applette_arguments, $_GEN_commun)
|
107 |
{
|
109 |
{
|
108 |
// --------------------------------------------------------------------------------------------------------
|
110 |
// --------------------------------------------------------------------------------------------------------
|
109 |
// Initialisation de variable de configuration.
|
111 |
// Initialisation de variable de configuration.
|
110 |
$liste_type_site = '102, 103';// Les id des types des sites pouvant apparaître dans le sélecteur
|
112 |
$liste_type_site = '102, 103';// Les id des types des sites pouvant apparaître dans le sélecteur
|
111 |
$objet_pear_db = $_GEN_commun['pear_db'];//objet Pear créé par DB contenant la connexion à la base de données.
|
113 |
$objet_pear_db = $_GEN_commun['pear_db'];//objet Pear créé par DB contenant la connexion à la base de données.
|
112 |
$code_site = $_GEN_commun['url_site'];//identifiant du site courant.
|
114 |
$code_site = $_GEN_commun['url_site'];//identifiant du site courant.
|
113 |
$id_langue = $_GEN_commun['url_i18n'];//identifiant de la langue principale du site courant.
|
115 |
$id_langue = $_GEN_commun['url_i18n'];//identifiant de la langue principale du site courant.
|
114 |
$GLOBALS['_MOTEUR_RECHERCHE_']['bd']['papyrus'] = $_GEN_commun['pear_db'];// Connexion à la BD de Papyrus
|
116 |
$GLOBALS['_MOTEUR_RECHERCHE_']['bd']['papyrus'] = $_GEN_commun['pear_db'];// Connexion à la BD de Papyrus
|
115 |
$url = $_GEN_commun['url'];
|
117 |
$url = $_GEN_commun['url'];
|
116 |
$url_base = PAP_URL;
|
118 |
$url_base = PAP_URL;
|
117 |
$url_cle_site = GEN_URL_CLE_SITE;
|
119 |
$url_cle_site = GEN_URL_CLE_SITE;
|
118 |
$url_cle_i18n = GEN_URL_CLE_I18N;
|
120 |
$url_cle_i18n = GEN_URL_CLE_I18N;
|
119 |
$url_id_type_site = GEN_URL_ID_TYPE_SITE;
|
121 |
$url_id_type_site = GEN_URL_ID_TYPE_SITE;
|
120 |
$indent_origine = 12;// Indentation de départ en nombre d'espace
|
122 |
$indent_origine = 12;// Indentation de départ en nombre d'espace
|
121 |
$indent_pas = 4;// Pas d'indentation en nombre d'espace
|
123 |
$indent_pas = 4;// Pas d'indentation en nombre d'espace
|
122 |
$retour = '';
|
124 |
$retour = '';
|
123 |
$retour_resultats = '';
|
125 |
$retour_resultats = '';
|
124 |
|
126 |
|
125 |
// --------------------------------------------------------------------------------------------------------
|
127 |
// --------------------------------------------------------------------------------------------------------
|
126 |
// Lancement de la recherche si nécessaire
|
128 |
// Lancement de la recherche si nécessaire
|
127 |
|
129 |
|
128 |
$_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif'] = '';
|
130 |
$_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif'] = '';
|
129 |
if (!isset($_POST['more_motif']) || $_POST['more_motif'] == '') {
|
131 |
if (!isset($_POST['more_motif']) || $_POST['more_motif'] == '') {
|
130 |
$_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif'] = MORE_LG_FORM_MOTIF_VALUE;
|
132 |
$_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif'] = MORE_LG_FORM_MOTIF_VALUE;
|
131 |
} else {
|
133 |
} else {
|
132 |
$_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif'] = $_POST['more_motif'];
|
134 |
$_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif'] = $_POST['more_motif'];
|
133 |
/** Inclusion de la classe Recherche.*/
|
135 |
/** Inclusion de la classe Recherche.*/
|
134 |
require_once MORE_CHEMIN_BIBLIO.'more_recherche.class.php';
|
136 |
require_once MORE_CHEMIN_BIBLIO.'more_recherche.class.php';
|
135 |
/** Inclusion de la classe Recherche_Menu_Meta.*/
|
137 |
/** Inclusion de la classe Recherche_Menu_Meta.*/
|
136 |
require_once MORE_CHEMIN_BIBLIO.'more_recherche_papyrus_menu.class.php';
|
138 |
require_once MORE_CHEMIN_BIBLIO.'more_recherche_papyrus_menu.class.php';
|
137 |
$moteur = new Recherche($_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif']);
|
139 |
$moteur = new Recherche($_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif']);
|
138 |
$recherche_papyrus_menu = new Recherche_Papyrus_Menu($_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif']);
|
140 |
$recherche_papyrus_menu = new Recherche_Papyrus_Menu($_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif']);
|
139 |
$moteur->ajouterRecherche($recherche_papyrus_menu);
|
141 |
$moteur->ajouterRecherche($recherche_papyrus_menu);
|
140 |
$aso_resultats = $moteur->rechercherMotif();
|
142 |
$aso_resultats = $moteur->rechercherMotif();
|
141 |
//$GLOBALS['_DEBOGAGE_'] = '<pre>'.print_r($aso_resultats, true).'</pre>';
|
143 |
//$GLOBALS['_DEBOGAGE_'] = '<pre>'.print_r($aso_resultats, true).'</pre>';
|
142 |
$retour_resultats .= '<h1>'.MORE_LG_RESULTAT_TITRE.'</h1>'."\n";
|
144 |
$retour_resultats .= '<h1>'.MORE_LG_RESULTAT_TITRE.'</h1>'."\n";
|
143 |
$retour_resultats .= '<ul>'."\n";
|
145 |
$retour_resultats .= '<ul>'."\n";
|
144 |
foreach ($aso_resultats as $val) {
|
146 |
foreach ($aso_resultats as $val) {
|
145 |
if (!empty($val['url'])) {
|
147 |
if (!empty($val['url'])) {
|
146 |
$retour_resultats .= '<li>'."\n";
|
148 |
$retour_resultats .= '<li>'."\n";
|
147 |
$retour_resultats .= '<a href="'.$val['url'].'">'.$val['titre'].'</a> '.MORE_LG_RESULTAT_SEPARATEUR.' ';
|
149 |
$retour_resultats .= '<a href="'.$val['url'].'">'.$val['titre'].'</a> '.MORE_LG_RESULTAT_SEPARATEUR.' ';
|
148 |
$retour_resultats .= MORE_LG_RESULTAT_POIDS.$val['poids']."\n";
|
150 |
$retour_resultats .= MORE_LG_RESULTAT_POIDS.$val['poids']."\n";
|
149 |
$retour_resultats .= '</li>'."\n";
|
151 |
$retour_resultats .= '</li>'."\n";
|
150 |
}
|
152 |
}
|
151 |
}
|
153 |
}
|
152 |
$retour_resultats .= '</ul>'."\n";
|
154 |
$retour_resultats .= '</ul>'."\n";
|
153 |
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_NAVIGATION'] = '';
|
155 |
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_NAVIGATION'] = '';
|
154 |
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_TETE'] = '';
|
156 |
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_TETE'] = '';
|
155 |
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] = $retour_resultats;
|
157 |
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] = $retour_resultats;
|
156 |
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_PIED'] = '';
|
158 |
$GLOBALS['_PAPYRUS_']['rendu']['CONTENU_PIED'] = '';
|
157 |
$GLOBALS['_GEN_commun']['info_menu'] = '';
|
159 |
$GLOBALS['_GEN_commun']['info_menu'] = '';
|
158 |
}
|
160 |
}
|
159 |
|
161 |
|
160 |
// --------------------------------------------------------------------------------------------------------
|
162 |
// --------------------------------------------------------------------------------------------------------
|
161 |
// Création du formulaire de l'applette
|
163 |
// Création du formulaire de l'applette
|
162 |
|
164 |
|
163 |
// Notes : Quickform semble remplacer les & des & à nouveau par des & solution utiliser str_replace()...
|
165 |
// Notes : Quickform semble remplacer les & des & à nouveau par des & solution utiliser str_replace()...
|
164 |
$form = new HTML_QuickForm('form_more_recherche', 'post', str_replace('&', '&', $url->getUrl()));
|
166 |
$more_form = new HTML_QuickForm('form_more_recherche', 'post', str_replace('&', '&', $url->getUrl()));
|
165 |
$tab_index = MORE_FORM_MOTIF_TAB;
|
167 |
$tab_index = MORE_FORM_MOTIF_TAB;
|
166 |
$squelette =& $form->defaultRenderer();
|
168 |
$more_squelette =& $more_form->defaultRenderer();
|
167 |
$squelette->setFormTemplate("\n".'<form{attributes}>'."\n".'{content}'."\n".'</form>');
|
169 |
$more_squelette->setFormTemplate("\n".'<form{attributes}>'."\n".'{content}'."\n".'</form>');
|
168 |
$squelette->setElementTemplate( '{label}'."\n".
|
170 |
$more_squelette->setElementTemplate( '{label}'."\n".
|
169 |
'{element}'."\n".
|
171 |
'{element}'."\n".
|
170 |
'<!-- BEGIN required --><span class="symbole_obligatoire">'.MORE_LG_FORM_SYMBOLE_OBLIGATOIRE.'</span><!-- END required -->'."\n".
|
172 |
'<!-- BEGIN required --><span class="symbole_obligatoire">'.MORE_LG_FORM_SYMBOLE_OBLIGATOIRE.'</span><!-- END required -->'."\n".
|
171 |
'<!-- BEGIN error --><span class="erreur">{error}</span><!-- END error -->'."\n");
|
173 |
'<!-- BEGIN error --><span class="erreur">{error}</span><!-- END error -->'."\n");
|
172 |
//$squelette->setRequiredNoteTemplate("\n".'<p><span class="symbole_obligatoire">'.MORE_LG_FORM_SYMBOLE_OBLIGATOIRE.'</span> {requiredNote}</p>'."\n");
|
174 |
$more_form->accept($more_squelette);
|
- |
|
175 |
$more_form->removeAttribute('name');
|
173 |
|
176 |
|
174 |
$partie_menu_debut = '<fieldset>'."\n".'<legend>'.MORE_LG_FORM_TITRE.'</legend>'."\n";
|
177 |
$partie_menu_debut = '<fieldset>'."\n".'<legend>'.MORE_LG_FORM_TITRE.'</legend>'."\n";
|
175 |
$form->addElement('html', $partie_menu_debut);
|
178 |
$more_form->addElement('html', $partie_menu_debut);
|
176 |
|
179 |
|
177 |
$id = 'more_motif';
|
180 |
$id = 'more_motif';
|
178 |
$aso_attributs = array( 'id'=>$id, 'tabindex' => $tab_index++, 'size' => MORE_FORM_MOTIF_SIZE, 'maxlength' => MORE_FORM_MOTIF_MAXLENGTH,
|
181 |
$aso_attributs = array( 'id'=>$id, 'tabindex' => $tab_index++, 'size' => MORE_FORM_MOTIF_SIZE, 'maxlength' => MORE_FORM_MOTIF_MAXLENGTH,
|
179 |
'onclick' => "javascript: this.value='';");
|
182 |
'onclick' => "javascript: this.value='';");
|
180 |
$label = '<label for="'.$id.'">'.MORE_LG_FORM_MOTIF.'</label>';
|
183 |
$label = '<label for="'.$id.'">'.MORE_LG_FORM_MOTIF.'</label>';
|
181 |
$form->addElement('text', $id, $label, $aso_attributs);
|
184 |
$more_form->addElement('text', $id, $label, $aso_attributs);
|
182 |
|
185 |
|
183 |
$id = 'more_ok';
|
186 |
$id = 'more_ok';
|
184 |
$aso_attributs = array('id'=> $id, 'tabindex' => $tab_index++);
|
187 |
$aso_attributs = array('id'=> $id, 'tabindex' => $tab_index++);
|
185 |
$form->addElement('submit', $id, MORE_LG_FORM_VALIDER, $aso_attributs);
|
188 |
$more_form->addElement('submit', $id, MORE_LG_FORM_VALIDER, $aso_attributs);
|
186 |
|
189 |
|
187 |
$partie_entete_fin = "\n".'</fieldset>';
|
190 |
$partie_entete_fin = "\n".'</fieldset>';
|
188 |
$form->addElement('html', $partie_entete_fin);
|
191 |
$more_form->addElement('html', $partie_entete_fin);
|
189 |
|
192 |
|
190 |
// Instanciation avec les valeur par défaut
|
193 |
// Instanciation avec les valeur par défaut
|
191 |
$form->setDefaults($_SESSION['_MOTEUR_RECHERCHE_']['rechercher']);
|
194 |
$more_form->setDefaults($_SESSION['_MOTEUR_RECHERCHE_']['rechercher']);
|
192 |
|
195 |
|
193 |
// Transformation en XHTML du formulaire
|
196 |
// Transformation en XHTML du formulaire
|
194 |
$retour .= $form->toHTML()."\n";
|
197 |
$retour .= $more_form->toHTML()."\n";
|
195 |
// --------------------------------------------------------------------------------------------------------
|
198 |
// --------------------------------------------------------------------------------------------------------
|
196 |
|
199 |
|
197 |
return $retour;
|
200 |
return $retour;
|
198 |
}
|
201 |
}
|
199 |
|
202 |
|
200 |
// +------------------------------------------------------------------------------------------------------+
|
203 |
// +------------------------------------------------------------------------------------------------------+
|
201 |
// | PIED du PROGRAMME |
|
204 |
// | PIED du PROGRAMME |
|
202 |
// +------------------------------------------------------------------------------------------------------+
|
205 |
// +------------------------------------------------------------------------------------------------------+
|
203 |
|
206 |
|
204 |
|
207 |
|
205 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
208 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
206 |
*
|
209 |
*
|
207 |
* $Log: not supported by cvs2svn $
|
210 |
* $Log: not supported by cvs2svn $
|
- |
|
211 |
* Revision 1.2 2005/02/22 17:44:03 jpm
|
- |
|
212 |
* Suppression de référence posant problème.
|
- |
|
213 |
*
|
208 |
* Revision 1.1 2004/12/07 10:24:01 jpm
|
214 |
* Revision 1.1 2004/12/07 10:24:01 jpm
|
209 |
* Moteur de recherche version de départ.
|
215 |
* Moteur de recherche version de départ.
|
210 |
*
|
216 |
*
|
211 |
*
|
217 |
*
|
212 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
218 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
213 |
*/
|
219 |
*/
|
214 |
?>
|
220 |
?>
|