Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev 114 Rev 147
Line 7... Line 7...
7
 * @category	Php5
7
 * @category	Php5
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
 * @copyright	2010 Tela-Botanica
9
 * @copyright	2010 Tela-Botanica
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
12
 * @version		SVN: $Id: Recherche.php 114 2010-06-28 09:49:51Z jpm $
12
 * @version		SVN: $Id: Recherche.php 147 2010-09-06 09:37:22Z jpm $
13
 */
13
 */
14
class Recherche extends aControleur {
14
class Recherche extends aControleur {
Line 15... Line 15...
15
	
15
	
16
	private $chaine_recherche = null;
16
	private $chaine_recherche = null;
Line 84... Line 84...
84
	 * Recherche des collections.
84
	 * Recherche des collections.
85
	 * @return string la vue correspondante
85
	 * @return string la vue correspondante
86
	 */
86
	 */
87
	public function rechercher() {
87
	public function rechercher() {
88
		$donnees = array();
88
		$donnees = array();
89
		$rechercheDao = $this->getModele('RechercheDao');
89
		$rechercheDao =  new RechercheDao();
90
		$parametres = array('mots' => '*');
90
		$parametres = array('mots' => '*');
Line 91... Line 91...
91
		
91
		
92
		// Récupération des paramêtres de l'url
92
		// Récupération des paramêtres de l'url
93
		$chaine_de_recherche = $this->obtenirChaineRecherche(); 
93
		$chaine_de_recherche = $this->obtenirChaineRecherche();