Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 1237 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1237 Rev 1285
Line 38... Line 38...
38
	private $imgHauteur = 0;
38
	private $imgHauteur = 0;
39
	private $tableMeta = '';
39
	private $tableMeta = '';
40
	private $tableOntologie = '';
40
	private $tableOntologie = '';
41
	private $tableChorodep = '';
41
	private $tableChorodep = '';
42
	private $metadonnees = '';
42
	private $metadonnees = '';
43
	private $ontologies = '';
43
	private $ontologies = [];
44
	private $priorites = '';
44
	private $priorites = [];
45
	private $version = '';
45
	private $version = '';
46
	private $legende = array();
46
	private $legende = array();
47
	private $donnees = array();
47
	private $donnees = array();
Line 434... Line 434...
434
		$convertisseur->destroy();
434
		$convertisseur->destroy();
435
		return $png;
435
		return $png;
436
	}
436
	}
Line 437... Line 437...
437
 
437
 
438
	private function getIdFichier() {
438
	private function getIdFichier() {
439
		$id = '';
439
		$id = [];
440
		foreach ($this->taxonsDemandes as $reftax => $ids) {
440
		foreach ($this->taxonsDemandes as $reftax => $ids) {
441
			$id[] = $reftax;
441
			$id[] = $reftax;
442
			foreach ($ids as $type => $vals) {
442
			foreach ($ids as $type => $vals) {
443
				$id[] = $type;
443
				$id[] = $type;
Line 464... Line 464...
464
			}
464
			}
465
		}
465
		}
466
		return $tableau;
466
		return $tableau;
467
	}
467
	}
468
}
468
}
469
?>
-
 
470
469
?>
-
 
470