Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1666 Rev 1793
Line 19... Line 19...
19
 
19
 
20
	private $imageIds = array();
20
	private $imageIds = array();
21
	private $conteneur;
21
	private $conteneur;
22
	private $navigation;
22
	private $navigation;
23
	private $masque;
-
 
24
	protected $gestionBdd;
23
	private $masque;
25
	protected $bdd;
24
	protected $bdd;
26
	private $ressources;
25
	private $ressources;
Line 27... Line 26...
27
	private $parametres;
26
	private $parametres;
28
 
27
 
29
	public function __construct(Conteneur $conteneur = null) {
28
	public function __construct(Conteneur $conteneur = null) {
30
		$this->conteneur = $conteneur == null ? new Conteneur() : $conteneur;
29
		$this->conteneur = $conteneur == null ? new Conteneur() : $conteneur;
31
		$this->conteneur->chargerConfiguration('config_votes.ini');
30
		$this->conteneur->chargerConfiguration('config_votes.ini');
32
		$this->conteneur->chargerConfiguration('config_mapping_votes.ini');
31
		$this->conteneur->chargerConfiguration('config_mapping_votes.ini');
33
		$this->navigation = $conteneur->getNavigation();
-
 
34
		$this->masque = $conteneur->getMasque();
32
		$this->navigation = $conteneur->getNavigation();
35
		$this->gestionBdd = $conteneur->getGestionBdd();
33
		$this->masque = $conteneur->getMasque();
Line 36... Line 34...
36
		$this->bdd = $this->gestionBdd->getBdd();
34
		$this->bdd = $this->conteneur->getBdd();
37
	}
35
	}
38
 
36