Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

Rev 441 Rev 475
Line 38... Line 38...
38
		if (!isset($this->partages['Outils'])){
38
		if (!isset($this->partages['Outils'])){
39
			$this->partages['Outils'] = new Outils();
39
			$this->partages['Outils'] = new Outils();
40
		}
40
		}
41
		return $this->partages['Outils'];
41
		return $this->partages['Outils'];
42
	}
42
	}
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();
47
		}
47
		}
48
		return $this->partages['EfloreCommun'];
48
		return $this->partages['EfloreCommun'];
49
	}
49
	}
50
	
-
 
51
 
-
 
Line 52... Line 50...
52
 
50
 
53
	public function getMessages() {
51
	public function getMessages() {
54
		if (!isset($this->partages['Messages'])){
52
		if (!isset($this->partages['Messages'])){
55
			$this->partages['Messages'] = new Messages($this->getParametre('-v'));
53
			$this->partages['Messages'] = new Messages($this->getParametre('-v'));
56
		}
54
		}
57
		return $this->partages['Messages'];
55
		return $this->partages['Messages'];
-
 
56
	}
-
 
57
 
-
 
58
	public function getRestClient() {
-
 
59
		if (!isset($this->partages['RestClient'])){
-
 
60
			$this->partages['RestClient'] = new RestClient();
-
 
61
		}
-
 
62
		return $this->partages['RestClient'];
58
	}
63
	}
59
}
64
}
60
?>
65
?>