Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1821 Rev 1840
Line 146... Line 146...
146
		if (!isset($this->partages['syndicationOutils'])) {
146
		if (!isset($this->partages['syndicationOutils'])) {
147
			$this->partages['syndicationOutils'] = new SyndicationOutils($this);
147
			$this->partages['syndicationOutils'] = new SyndicationOutils($this);
148
		}
148
		}
149
		return $this->partages['syndicationOutils'];
149
		return $this->partages['syndicationOutils'];
150
	}
150
	}
-
 
151
 
-
 
152
	public function getParametresFiltrage() {
-
 
153
		if (!isset($this->partages['parametresFiltrage'])) {
-
 
154
			$this->partages['parametresFiltrage'] = new ParametresFiltrage($this);
-
 
155
		}
-
 
156
		return $this->partages['parametresFiltrage'];
-
 
157
	}
-
 
158
 
-
 
159
	public function getSql() {
-
 
160
		if (!isset($this->partages['sql'])) {
-
 
161
			$this->partages['sql'] = new Sql($this);
-
 
162
		}
-
 
163
		return $this->partages['sql'];
-
 
164
	}
151
}
165
}
152
166