Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3928 Rev 3992
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['num_nom'] = isset($_GET['num_nom']) ? $_GET['num_nom'] : null;
46
		$criteres['num_nom'] = isset($_GET['nn']) ? $_GET['nn'] : null;
47
		$criteres['taxon'] = isset($_GET['num_taxon']) ? $_GET['num_taxon'] : null; //à faire
47
		$criteres['referentiel'] = isset($_GET['referentiel']) ? $_GET['referentiel'] : null;
48
		$criteres['referentiel'] = isset($_GET['referentiel']) ? $_GET['referentiel'] : null;
48
		// date debut - fin
49
		// date debut - fin
49
		$criteres['zone_geo'] = isset($_GET['commune']) ? $_GET['commune'] : null;
50
		$criteres['zone_geo'] = isset($_GET['commune']) ? $_GET['commune'] : null;
50
		$criteres['ce_zone_geo'] = isset($_GET['dept']) ? $_GET['dept'] : null; // separe par ,
51
		$criteres['dept'] = isset($_GET['dept']) ? $_GET['dept'] : null; // separe par ,
51
		$criteres['pays'] = isset($_GET['pays']) ? $_GET['pays'] : null;
52
		$criteres['pays'] = isset($_GET['pays']) ? $_GET['pays'] : null;
52
		$criteres['auteur'] = isset($_GET['auteur']) ? $_GET['auteur'] : null;
53
		$criteres['auteur'] = isset($_GET['auteur']) ? $_GET['auteur'] : null;
53
		$criteres['programme'] = isset($_GET['programme']) ? $_GET['programme'] : null;
54
		$criteres['programme'] = isset($_GET['programme']) ? $_GET['programme'] : null;
-
 
55
		$criteres['projet'] = isset($_GET['projet']) ? $_GET['projet'] : null;
54
		$criteres['projet'] = isset($_GET['projet']) ? $_GET['projet'] : null;
56
		$criteres['mots_cles'] = isset($_GET['tag']) ? $_GET['tag'] : null;
55
		$criteres['mots_cles'] = isset($_GET['tag']) ? $_GET['tag'] : null;
57
		$criteres['mots_cles'] = isset($_GET['mots_cles']) ? $_GET['mots_cles'] : null; // à faire
-
 
58
		$criteres['famille'] = isset($_GET['famille']) ? $_GET['famille'] : null;
56
		$criteres['famille'] = isset($_GET['famille']) ? $_GET['famille'] : null;
59
		$criteres['standard'] = isset($_GET['standard']) ? $_GET['standard'] : 1;
57
		$criteres['standard'] = isset($_GET['standard']) ? $_GET['standard'] : 1;
60
		$criteres['transmission'] = 0;
Line 58... Line 61...
58
		$criteres['tri'] = isset($_GET['tri']) ? $_GET['tri'] : self::tri_defaut;
61
		$criteres['tri'] = isset($_GET['tri']) ? $_GET['tri'] : self::tri_defaut;
59
		$criteres['dir'] = isset($_GET['dir']) ? $_GET['dir'] : self::dir_defaut;
62
		$criteres['dir'] = isset($_GET['dir']) ? $_GET['dir'] : self::dir_defaut;
60
 
63
 
61
		$chercheur_images = new RechercheImage($this->config);
64
		$chercheur_images = new RechercheImage($this->config);
Line 62... Line 65...
62
		$total = 10; //$chercheur_images->compterImages(null, $criteres);
65
		$total = $chercheur_images->compterImages(null, $criteres);
63
		$images = $chercheur_images->rechercherImagesJoinObservation(null, $criteres, $this->start, $this->limit);
66
		$images = $chercheur_images->rechercherImagesJoinObservation(null, $criteres, $this->start, $this->limit);