Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1793 Rev 1794
Line 43... Line 43...
43
 
43
 
44
		// Lancement du service
44
		// Lancement du service
45
		$taxons = $this->chargerNoms($this->masque->getMasque('referentiel'), $this->masque->getMasque('nom'));
45
		$taxons = $this->chargerNoms($this->masque->getMasque('referentiel'), $this->masque->getMasque('nom'));
46
		$total = $this->compterNoms($taxons);
46
		$total = $this->compterNoms($taxons);
47
		$this->navigation->setTotal($total);
47
		$this->navigation->setTotal($total);
48
		$this->conteneur->setSansLimite();
48
		$this->navigation->setSansLimite();
Line 49... Line 49...
49
		$resultat = new ResultatService();
49
		$resultat = new ResultatService();
50
 
50
 
51
		$resultat->corps = array('entete' => $this->conteneur->getEntete(), 'resultats' => $taxons);
51
		$resultat->corps = array('entete' => $this->navigation->getEntete(), 'resultats' => $taxons);
Line 52... Line 52...
52
		return $resultat;
52
		return $resultat;
53
	}
53
	}
Line 80... Line 80...
80
	* Compter le nombre total de noms pour affichage dans entete.
80
	* Compter le nombre total de noms pour affichage dans entete.
81
	* */
81
	* */
82
	private function compterNoms($taxons) {
82
	private function compterNoms($taxons) {
83
		return sizeof($taxons);
83
		return sizeof($taxons);
84
	}
84
	}
85
}
-
 
86
?>
-
 
87
85
}
-
 
86
88
87