Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 369 Rev 477
Line 151... Line 151...
151
		$parametres['projet'] = $projet;
151
		$parametres['projet'] = $projet;
152
		$this->urlBase->setRequete($parametres);
152
		$this->urlBase->setRequete($parametres);
153
		$url = $this->urlBase->getURL();
153
		$url = $this->urlBase->getURL();
154
		return $url;
154
		return $url;
155
	}
155
	}
-
 
156
 
-
 
157
	public function getParametresUrlPopUpIllustrations() {
-
 
158
		$parametres = array(
-
 
159
				'module' => 'popup-illustrations',
-
 
160
				'action' => 'fiche'
-
 
161
		);
-
 
162
		return $parametres;
-
 
163
	}
-
 
164
 
-
 
165
	public function obtenirUrlPopUpIllustrations($idImg) {
-
 
166
		$parametres = $this->getParametresUrlPopUpIllustrations();
-
 
167
		$parametres['id'] = $idImg;
-
 
168
		$this->urlBase->setRequete($parametres);
-
 
169
		$url = $this->urlBase->getURL();
-
 
170
		return $url;
-
 
171
	}
156
}
172
}
157
?>
173
?>
158
174