Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3142 Rev 3437
Line 45... Line 45...
45
			'departement' => 'departement',
45
			'departement' => 'departement',
46
			'lieudit' => 'lieudit',
46
			'lieudit' => 'lieudit',
47
			'station' => 'station',
47
			'station' => 'station',
48
			'projet' => 'mots_cles',
48
			'projet' => 'mots_cles',
49
			'programme' => 'programme',
49
			'programme' => 'programme',
50
			'num_taxon' => 'nt',
50
	        'num_taxon' => 'nt',
-
 
51
	        'certitude' => 'certitude',
51
			'date_debut' => 'date_debut',
52
			'date_debut' => 'date_debut',
52
			'date_fin' => 'date_fin',
53
			'date_fin' => 'date_fin',
53
			'taxon' => 'taxon',
54
			'taxon' => 'taxon',
54
			'identiplante' => 'validation_identiplante',
55
			'identiplante' => 'validation_identiplante',
55
			'validation_identiplante' => 'validation_identiplante',
56
			'validation_identiplante' => 'validation_identiplante',
Line 198... Line 199...
198
		$groupes .= ',auteur';
199
		$groupes .= ',auteur';
Line 199... Line 200...
199
		
200
		
Line -... Line 201...
-
 
201
		if(!$groupes) die('erreur: Ne peut identifier les groupes de champs demandés.');
-
 
202
		
200
		if(!$groupes) die('erreur: Ne peut identifier les groupes de champs demandés.');
203
		
201
		
204
		if(isset($criteres['obsids'])) {
-
 
205
		    $obsids = (is_array($criteres['obsids'])) ? implode(',', $criteres['obsids']) : $criteres['obsids'];
Line 202... Line 206...
202
		
206
		    $criteres['sql_brut'] = sprintf('id_observation IN (%s)',
203
		if(isset($criteres['obsids'])) $criteres['sql_brut'] = sprintf('id_observation IN (%s)',
207
		        $obsids);
204
				implode(',', $criteres['obsids']));
208
		}
205
		
209