Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1603 Rev 1612
Line 257... Line 257...
257
	--------------------------------------------------------------------------------*/
257
	--------------------------------------------------------------------------------*/
258
	/**
258
	/**
259
	* Charger les votes pour chaque image
259
	* Charger les votes pour chaque image
260
	* */
260
	* */
261
	private function chargerVotes() {
261
	private function chargerVotes() {
262
		$requeteVotes = 'SELECT * FROM '.
262
		$requeteVotes = 'SELECT * FROM del_image_vote '.$this->chargerClauseWhere();
263
			$this->gestionBdd->formaterTable('del_image_vote').
-
 
264
			$this->chargerClauseWhere();
-
 
265
		$resultatsVotes = $this->bdd->recupererTous($requeteVotes);
263
		$resultatsVotes = $this->bdd->recupererTous($requeteVotes);
266
		$votes = $this->formaterVotes($resultatsVotes);
264
		$votes = $this->formaterVotes($resultatsVotes);
267
		return $votes;
265
		return $votes;
268
	}
266
	}