| 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: more_recherche.class.php,v 1.11 2007-01-02 18:49:22 jp_milcent Exp $
|
24 |
// CVS : $Id: more_recherche.class.php,v 1.12 2007-10-29 18:29:30 jp_milcent Exp $
|
| 25 |
/**
|
25 |
/**
|
| 26 |
* Classe permettant d'effectuer des recherches sur les métas informations des menus.
|
26 |
* Classe permettant d'effectuer des recherches sur les métas informations des menus.
|
| 27 |
*
|
27 |
*
|
| 28 |
* Permet de rechercher et classer les menus en fonction d'une chaine.
|
28 |
* Permet de rechercher et classer les menus en fonction d'une chaine.
|
| 29 |
*
|
29 |
*
|
| Line 32... |
Line 32... |
| 32 |
//Auteur original :
|
32 |
//Auteur original :
|
| 33 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
33 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
| 34 |
//Autres auteurs :
|
34 |
//Autres auteurs :
|
| 35 |
*@author aucun
|
35 |
*@author aucun
|
| 36 |
*@copyright Tela-Botanica 2000-2004
|
36 |
*@copyright Tela-Botanica 2000-2004
|
| 37 |
*@version $Revision: 1.11 $ $Date: 2007-01-02 18:49:22 $
|
37 |
*@version $Revision: 1.12 $ $Date: 2007-10-29 18:29:30 $
|
| 38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
| 39 |
*/
|
39 |
*/
|
| Line 40... |
Line 40... |
| 40 |
|
40 |
|
| 41 |
// +------------------------------------------------------------------------------------------------------+
|
41 |
// +------------------------------------------------------------------------------------------------------+
|
| Line 45... |
Line 45... |
| 45 |
|
45 |
|
| 46 |
// +------------------------------------------------------------------------------------------------------+
|
46 |
// +------------------------------------------------------------------------------------------------------+
|
| 47 |
// | CORPS du PROGRAMME |
|
47 |
// | CORPS du PROGRAMME |
|
| Line 48... |
Line 48... |
| 48 |
// +------------------------------------------------------------------------------------------------------+
|
48 |
// +------------------------------------------------------------------------------------------------------+
|
| 49 |
|
49 |
|
| 50 |
class Recherche {
|
50 |
class More_Recherche {
|
| 51 |
var $motif = '';
|
51 |
var $motif = '';
|
| Line 52... |
Line 52... |
| 52 |
var $moteurs_recherches = array();
|
52 |
var $moteurs_recherches = array();
|
| 53 |
var $resultats = array();
|
53 |
var $resultats = array();
|
| 54 |
|
54 |
|
| 55 |
// Constructeur
|
55 |
// Constructeur
|
| Line 56... |
Line 56... |
| 56 |
function Recherche($motif) {
|
56 |
function More_Recherche($motif) {
|
| 57 |
$this->setMotif($motif);
|
57 |
$this->setMotif($motif);
|
| Line 225... |
Line 225... |
| 225 |
}
|
225 |
}
|
| Line 226... |
Line 226... |
| 226 |
|
226 |
|
| 227 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
227 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
| 228 |
*
|
228 |
*
|
| - |
|
229 |
* $Log: not supported by cvs2svn $
|
| - |
|
230 |
* Revision 1.11 2007-01-02 18:49:22 jp_milcent
|
| - |
|
231 |
* Amélioration de la gestion du motif.
|
| - |
|
232 |
* Ajout de la gestion des expressions complête via l'utilisation de guillemets.
|
| 229 |
* $Log: not supported by cvs2svn $
|
233 |
*
|
| 230 |
* Revision 1.10 2006/12/12 13:54:41 jp_milcent
|
234 |
* Revision 1.10 2006/12/12 13:54:41 jp_milcent
|
| 231 |
* Correction bogue : variable non initialisée.
|
235 |
* Correction bogue : variable non initialisée.
|
| 232 |
*
|
236 |
*
|
| 233 |
* Revision 1.9 2006/10/17 09:21:40 jp_milcent
|
237 |
* Revision 1.9 2006/10/17 09:21:40 jp_milcent
|