Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3836 Rev 3928
Line 41... Line 41...
41
		$this->limit = isset($_GET['limit']) ? $_GET['limit'] : self::limit_defaut;
41
		$this->limit = isset($_GET['limit']) ? $_GET['limit'] : self::limit_defaut;
Line 42... Line 42...
42
 
42
 
43
		
43
		
-
 
44
		$criteres['recherche'] = isset($_GET['recherche']) ? $_GET['recherche'] : null;
44
		$criteres['recherche'] = isset($_GET['recherche']) ? $_GET['recherche'] : null;
45
		$criteres['taxon'] = isset($_GET['taxon']) ? $_GET['taxon'] : null;
45
		$criteres['taxon'] = isset($_GET['taxon']) ? $_GET['taxon'] : null;
-
 
46
		$criteres['referentiel'] = isset($_GET['referentiel']) ? $_GET['referentiel'] : null;
46
		$criteres['num_nom'] = isset($_GET['nn']) ? $_GET['nn'] : null;
47
		$criteres['taxon'] = isset($_GET['taxon']) ? $_GET['taxon'] : null;
47
		$criteres['referentiel'] = isset($_GET['referentiel']) ? $_GET['referentiel'] : null;
48
		// date debut - fin
48
		// date debut - fin
49
		$criteres['zone_geo'] = isset($_GET['commune']) ? $_GET['commune'] : null;
49
		$criteres['zone_geo'] = isset($_GET['commune']) ? $_GET['commune'] : null;
50
		$criteres['ce_zone_geo'] = isset($_GET['dept']) ? $_GET['dept'] : null; // separe par ,
50
		$criteres['ce_zone_geo'] = isset($_GET['dept']) ? $_GET['dept'] : null; // separe par ,
51
		$criteres['pays'] = isset($_GET['pays']) ? $_GET['pays'] : null;
51
		$criteres['pays'] = isset($_GET['pays']) ? $_GET['pays'] : null;
-
 
52
		$criteres['auteur'] = isset($_GET['auteur']) ? $_GET['auteur'] : null;
52
		$criteres['auteur'] = isset($_GET['auteur']) ? $_GET['auteur'] : null;
53
		$criteres['programme'] = isset($_GET['programme']) ? $_GET['programme'] : null;
53
		$criteres['programme'] = isset($_GET['programme']) ? $_GET['programme'] : null;
54
		$criteres['projet'] = isset($_GET['projet']) ? $_GET['projet'] : null;
54
		$criteres['mots_cles'] = isset($_GET['tag']) ? $_GET['tag'] : null;
55
		$criteres['mots_cles'] = isset($_GET['tag']) ? $_GET['tag'] : null;
55
		$criteres['famille'] = isset($_GET['famille']) ? $_GET['famille'] : null;
56
		$criteres['famille'] = isset($_GET['famille']) ? $_GET['famille'] : null;
56
		$criteres['standard'] = isset($_GET['standard']) ? $_GET['standard'] : 1;
57
		$criteres['standard'] = isset($_GET['standard']) ? $_GET['standard'] : 1;
Line 57... Line 58...
57
		$criteres['tri'] = isset($_GET['tri']) ? $_GET['tri'] : self::tri_defaut;
58
		$criteres['tri'] = isset($_GET['tri']) ? $_GET['tri'] : self::tri_defaut;
58
		$criteres['dir'] = isset($_GET['dir']) ? $_GET['dir'] : self::dir_defaut;
59
		$criteres['dir'] = isset($_GET['dir']) ? $_GET['dir'] : self::dir_defaut;
59
 
60
 
60
		$chercheur_images = new RechercheImage($this->config);
61
		$chercheur_images = new RechercheImage($this->config);
Line 61... Line 62...
61
		$total = $chercheur_images->compterImages(null, $criteres);
62
		$total = 10; //$chercheur_images->compterImages(null, $criteres);
62
		$images = $chercheur_images->rechercherImagesJoinObservation(null, $criteres, $this->start, $this->limit);
63
		$images = $chercheur_images->rechercherImagesJoinObservation(null, $criteres, $this->start, $this->limit);