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 33 2010-04-07 15:07:44Z jpm $
|
12 |
* @version SVN: $Id: Recherche.php 41 2010-04-26 14:41:05Z jpm $
|
13 |
*/
|
13 |
*/
|
14 |
class Recherche extends ColControleur {
|
14 |
class Recherche extends ColControleur {
|
Line 15... |
Line 15... |
15 |
|
15 |
|
16 |
//+----------------------------------------------------------------------------------------------------------------+
|
16 |
//+----------------------------------------------------------------------------------------------------------------+
|
Line 82... |
Line 82... |
82 |
$donnees_total = $rechercheDao->chercherStructureNbre($parametres);
|
82 |
$donnees_total = $rechercheDao->chercherStructureNbre($parametres);
|
Line 83... |
Line 83... |
83 |
|
83 |
|
84 |
// Gestion du fragmenteur
|
84 |
// Gestion du fragmenteur
|
85 |
$options = array(
|
85 |
$options = array(
|
86 |
'url' => $this->url,
|
86 |
'url' => $this->url,
|
- |
|
87 |
'donnees_total' => $donnees_total,
|
- |
|
88 |
'donnees_par_page' => Config::get('resultat_par_page_defaut'),
|
- |
|
89 |
'donnees_par_page_choix' => Config::get('resultat_par_page_choix'),
|
87 |
'donnees_total' => $donnees_total);
|
90 |
);
|
88 |
$fragmenteur = Composant::fabrique('fragmenteur', $options);
|
91 |
$fragmenteur = Composant::fabrique('fragmenteur', $options);
|
89 |
$donnees['fragmenteur'] = $fragmenteur->executer();
|
92 |
$donnees['fragmenteur'] = $fragmenteur->executer();
|
Line 90... |
Line 93... |
90 |
list($de, $a) = $fragmenteur->getDeplacementParPageId();
|
93 |
list($de, $a) = $fragmenteur->getDeplacementParPageId();
|