Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

Rev 475 Rev 478
Line 41... Line 41...
41
		return $this->partages['Outils'];
41
		return $this->partages['Outils'];
42
	}
42
	}
Line 43... Line 43...
43
 
43
 
44
	public function getEfloreCommun() {
44
	public function getEfloreCommun() {
45
		if (!isset($this->partages['EfloreCommun'])){
45
		if (!isset($this->partages['EfloreCommun'])){
46
			$this->partages['EfloreCommun'] = new EfloreCommun();
46
			$this->partages['EfloreCommun'] = new EfloreCommun($this);
47
		}
47
		}
48
		return $this->partages['EfloreCommun'];
48
		return $this->partages['EfloreCommun'];
Line 49... Line 49...
49
	}
49
	}
Line 59... Line 59...
59
		if (!isset($this->partages['RestClient'])){
59
		if (!isset($this->partages['RestClient'])){
60
			$this->partages['RestClient'] = new RestClient();
60
			$this->partages['RestClient'] = new RestClient();
61
		}
61
		}
62
		return $this->partages['RestClient'];
62
		return $this->partages['RestClient'];
63
	}
63
	}
-
 
64
 
-
 
65
	public function getBdd() {
-
 
66
		if (!isset($this->partages['Bdd'])){
-
 
67
			$this->partages['Bdd'] = new Bdd();
-
 
68
		}
-
 
69
		return $this->partages['Bdd'];
-
 
70
	}
64
}
71
}
65
?>
72
?>
66
73