Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2498 Rev 2500
Line 40... Line 40...
40
	 */
40
	 */
41
	public function executer() {
41
	public function executer() {
42
		$retour = null;
42
		$retour = null;
43
		extract($this->parametres);
43
		extract($this->parametres);
Line -... Line 44...
-
 
44
 
44
 
45
		$this->projet = self::PROJET_DEFAUT;
-
 
46
		if (isset($projet) && trim($projet) != "") {
-
 
47
			$projets = explode(',', $projet);
-
 
48
			$this->projet = $projets[0];
45
		$this->projet = (isset($projet) && trim($projet) != "") ? explode(',', $projet)[0] : self::PROJET_DEFAUT;
49
		}
Line 46... Line 50...
46
		$this->chargerConfigProjet();
50
		$this->chargerConfigProjet();
47
 
51
 
48
		$service = isset($service) ? $service : 'widget';
52
		$service = isset($service) ? $service : 'widget';