Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1363 Rev 1395
Line 21... Line 21...
21
*/
21
*/
22
class InventoryImageListPublic extends Cel {
22
class InventoryImageListPublic extends Cel {
Line 23... Line 23...
23
	
23
	
24
	const start_defaut = 0;
24
	const start_defaut = 0;
-
 
25
	const limit_defaut = 100;
-
 
26
	
-
 
27
	const tri_defaut = 'ci.date_creation';
Line 25... Line 28...
25
	const limit_defaut = 100;
28
	const dir_defaut = 'DESC';
Line 26... Line 29...
26
 
29
 
Line 48... Line 51...
48
		$criteres['zone_geo'] = isset($_GET['commune']) ? $_GET['commune'] : null;
51
		$criteres['zone_geo'] = isset($_GET['commune']) ? $_GET['commune'] : null;
49
		$criteres['taxon'] = isset($_GET['taxon']) ? $_GET['taxon'] : null;
52
		$criteres['taxon'] = isset($_GET['taxon']) ? $_GET['taxon'] : null;
50
		$criteres['ce_zone_geo'] = isset($_GET['dept']) ? $_GET['dept'] : null;
53
		$criteres['ce_zone_geo'] = isset($_GET['dept']) ? $_GET['dept'] : null;
51
		$criteres['famille'] = isset($_GET['famille']) ? $_GET['famille'] : null;
54
		$criteres['famille'] = isset($_GET['famille']) ? $_GET['famille'] : null;
52
		$criteres['recherche'] = isset($_GET['recherche']) ? $_GET['recherche'] : null;
55
		$criteres['recherche'] = isset($_GET['recherche']) ? $_GET['recherche'] : null;
-
 
56
		$criteres['tri'] = isset($_GET['tri']) ? $_GET['tri'] : self::tri_defaut;
-
 
57
		$criteres['dir'] = isset($_GET['dir']) ? $_GET['dir'] : self::dir_defaut;
Line 53... Line 58...
53
		
58
		
Line 54... Line 59...
54
		$chercheur_images = new RechercheImage($this->config);
59
		$chercheur_images = new RechercheImage($this->config);
55
		
60