Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1464 Rev 1477
Line 32... Line 32...
32
		'taxon' => 'b.nom_ret',
32
		'taxon' => 'b.nom_ret',
33
		'num_taxon' => 'b.nt',
33
		'num_taxon' => 'b.nt',
34
		'commentaire' => 'c.commentaire',
34
		'commentaire' => 'c.commentaire',
35
		'date' => 'c.date_prise_de_vue',
35
		'date' => 'c.date_prise_de_vue',
36
		'tag' => 'tag',
36
		'tag' => 'tag',
-
 
37
		'motcle' => 'tag',
37
		'projet' => 'projet');
38
		'projet' => 'projet');
Line 38... Line 39...
38
 
39
 
39
	/**
40
	/**
40
	 * Méthode appelée avec une requête de type GET.
41
	 * Méthode appelée avec une requête de type GET.
Line 377... Line 378...
377
			'		ON (coi.id_image = cim.id_image) '.
378
			'		ON (coi.id_image = cim.id_image) '.
378
			'	LEFT JOIN cel_obs AS ci '.
379
			'	LEFT JOIN cel_obs AS ci '.
379
			'		ON (coi.id_observation = ci.id_observation) '.
380
			'		ON (coi.id_observation = ci.id_observation) '.
380
			(($this->etreFluxAdmin()) ? '' : 'WHERE ci.transmission = 1 ').
381
			(($this->etreFluxAdmin()) ? '' : 'WHERE ci.transmission = 1 ').
381
			'ORDER BY '.(isset($this->orderby) && (!is_null($this->orderby)) ? $this->orderby  : 'cim.date_creation DESC').' '.
382
			'ORDER BY '.(isset($this->orderby) && (!is_null($this->orderby)) ? $this->orderby  : 'cim.date_creation DESC').' '.
382
			"LIMIT $this->start, $this->limit ";
383
			"LIMIT "; //$this->start, $this->limit ";
Line 383... Line 384...
383
 
384
 
Line 384... Line 385...
384
		$elements = $this->executerRequete($requete);
385
		$elements = $this->executerRequete($requete);
385
 
386