Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1794 Rev 1798
Line 53... Line 53...
53
	public function __construct(Conteneur $conteneur = null) {
53
	public function __construct(Conteneur $conteneur = null) {
54
		$this->conteneur = $conteneur == null ? new Conteneur() : $conteneur;
54
		$this->conteneur = $conteneur == null ? new Conteneur() : $conteneur;
55
		$this->conteneur->chargerConfiguration('config_departements_bruts.ini');
55
		$this->conteneur->chargerConfiguration('config_departements_bruts.ini');
56
		$this->conteneur->chargerConfiguration('config_observations.ini');
56
		$this->conteneur->chargerConfiguration('config_observations.ini');
57
		$this->conteneur->chargerConfiguration('config_mapping_votes.ini');
57
		$this->conteneur->chargerConfiguration('config_mapping_votes.ini');
58
		$this->conteneur->chargerConfiguration('config_mapping_commentaires.ini');
58
		//$this->conteneur->chargerConfiguration('config_mapping_commentaires.ini');
59
		$this->navigation = $conteneur->getNavigation();
59
		$this->navigation = $conteneur->getNavigation();
60
		$this->bdd = $this->conteneur->getBdd();
60
		$this->bdd = $this->conteneur->getBdd();
61
    }
61
    }
Line 62... Line 62...
62
 
62
 
Line 307... Line 307...
307
		}
307
		}
308
	}
308
	}
Line 309... Line 309...
309
 
309
 
310
	private function configurer() {
310
	private function configurer() {
311
		$this->mappingVotes = $this->conteneur->getParametre('mapping_votes');
311
		$this->mappingVotes = $this->conteneur->getParametre('mapping_votes');
312
		$this->mappingCommentaire = $this->conteneur->getParametre('mapping_commentaire');
312
		$this->mappingCommentaire = $this->conteneur->getParametreTableau('commentaires.mapping');
Line 313... Line 313...
313
	}
313
	}
314
 
314
 
315
	/**
315
	/**