Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev 84 Rev 85
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 84 2010-06-07 16:52:43Z jpm $
12
 * @version		SVN: $Id: Recherche.php 85 2010-06-07 17:00:23Z jpm $
13
 */
13
 */
14
class Recherche extends ColControleur {
14
class Recherche extends ColControleur {
Line 15... Line 15...
15
	
15
	
16
	private $chaine_recherche = null;
16
	private $chaine_recherche = null;
Line 199... Line 199...
199
					}
199
					}
200
				}
200
				}
201
			}
201
			}
202
		}
202
		}
203
	}
203
	}
204
	
-
 
205
	/**
-
 
206
	 * Recherche des collections.
-
 
207
	 * @return string la vue correspondante
-
 
208
	 */
-
 
209
	public function chargerPiedDePage() {
-
 
210
		$this->setSortie(self::RENDU_PIED, $this->getVue('pied'));
-
 
211
	}
-
 
212
}
204
}
213
205