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['num_nom']) ? $_GET['num_nom'] : null;
|
- |
|
47 |
$criteres['num_nom'] = isset($_GET['num_taxon']) ? $_GET['num_taxon'] : null; //à faire
|
- |
|
48 |
$criteres['referentiel'] = isset($_GET['referentiel']) ? $_GET['referentiel'] : null;
|
- |
|
49 |
$criteres['date'] = isset($_GET['date']) ? $_GET['date'] : null;
|
- |
|
50 |
$criteres['date_deb'] = isset($_GET['date_deb']) ? $_GET['date_deb'] : null;
|
47 |
$criteres['taxon'] = isset($_GET['num_taxon']) ? $_GET['num_taxon'] : null; //à faire
|
51 |
$criteres['date_fin'] = isset($_GET['date_fin']) ? $_GET['date_fin'] : null;
|
48 |
$criteres['referentiel'] = isset($_GET['referentiel']) ? $_GET['referentiel'] : null;
|
52 |
$criteres['annee'] = isset($_GET['annee']) ? $_GET['annee'] : null;
|
49 |
// date debut - fin
|
53 |
// date debut - fin
|
50 |
$criteres['zone_geo'] = isset($_GET['commune']) ? $_GET['commune'] : null;
|
54 |
$criteres['zone_geo'] = isset($_GET['commune']) ? $_GET['commune'] : null;
|
51 |
$criteres['dept'] = isset($_GET['dept']) ? $_GET['dept'] : null; // separe par ,
|
55 |
$criteres['dept'] = isset($_GET['dept']) ? $_GET['dept'] : null; // separe par ,
|
52 |
$criteres['pays'] = isset($_GET['pays']) ? $_GET['pays'] : null;
|
56 |
$criteres['pays'] = isset($_GET['pays']) ? $_GET['pays'] : null;
|
53 |
$criteres['auteur'] = isset($_GET['auteur']) ? $_GET['auteur'] : null;
|
57 |
$criteres['auteur'] = isset($_GET['auteur']) ? $_GET['auteur'] : null;
|
54 |
$criteres['programme'] = isset($_GET['programme']) ? $_GET['programme'] : null;
|
58 |
$criteres['programme'] = isset($_GET['programme']) ? $_GET['programme'] : null;
|
55 |
$criteres['projet'] = isset($_GET['projet']) ? $_GET['projet'] : null;
|
59 |
$criteres['projet'] = isset($_GET['projet']) ? $_GET['projet'] : null;
|
56 |
$criteres['mots_cles'] = isset($_GET['tag']) ? $_GET['tag'] : null;
|
60 |
$criteres['mots_cles'] = isset($_GET['tag']) ? $_GET['tag'] : null;
|
57 |
$criteres['mots_cles'] = isset($_GET['mots_cles']) ? $_GET['mots_cles'] : null; // à faire
|
61 |
$criteres['mots_cles'] = isset($_GET['mots_cles']) ? $_GET['mots_cles'] : null;
|
58 |
$criteres['famille'] = isset($_GET['famille']) ? $_GET['famille'] : null;
|
62 |
$criteres['famille'] = isset($_GET['famille']) ? $_GET['famille'] : null;
|
59 |
$criteres['standard'] = isset($_GET['standard']) ? $_GET['standard'] : 1;
|
63 |
$criteres['standard'] = isset($_GET['standard']) ? $_GET['standard'] : 1;
|
60 |
$criteres['transmission'] = 0;
|
64 |
$criteres['transmission'] = 1;
|
Line 61... |
Line 65... |
61 |
$criteres['tri'] = isset($_GET['tri']) ? $_GET['tri'] : self::tri_defaut;
|
65 |
$criteres['tri'] = isset($_GET['tri']) ? $_GET['tri'] : self::tri_defaut;
|
62 |
$criteres['dir'] = isset($_GET['dir']) ? $_GET['dir'] : self::dir_defaut;
|
66 |
$criteres['dir'] = isset($_GET['dir']) ? $_GET['dir'] : self::dir_defaut;
|