Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3318 Rev 3335
Line 363... Line 363...
363
	/**
363
	/**
364
	 * Lit une liste de taxons depuis un fichier tsv fourni
364
	 * Lit une liste de taxons depuis un fichier tsv fourni
365
	 */
365
	 */
366
	protected function recupererListeTaxon() {
366
	protected function recupererListeTaxon() {
367
		$taxons = array();
367
		$taxons = array();
368
		$langue_projet_url = ( isset ( $this->parametres['langue'] ) && $this->parametres['langue'] !== 'fr' ) ? '_' . $this->parametres['langue'] : '';
-
 
369
		$chemin_images = dirname(__FILE__) . self::DS . 'configurations' . self::DS;
368
		$fichier_tsv = dirname(__FILE__) . self::DS . 'configurations' . self::DS . 'sauvages_taxons.tsv';
370
		$fichier_tsv = $chemin_images . 'sauvages_taxons.tsv';
-
 
Line 371... Line 369...
371
 
369
 
372
		if ( file_exists( $fichier_tsv ) && is_readable( $fichier_tsv ) ) {
370
		if ( file_exists( $fichier_tsv ) && is_readable( $fichier_tsv ) ) {
373
			$taxons = $this->decomposerFichierTsv( $fichier_tsv );
371
			$taxons = $this->decomposerFichierTsv( $fichier_tsv );
374
		} else {
372
		} else {