Subversion Repositories Applications.framework

Rev

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

Rev 279 Rev 285
Line 10... Line 10...
10
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
10
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
11
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
11
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
12
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
12
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
13
 * @license	http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
13
 * @license	http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
14
 * @license	http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
14
 * @license	http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
15
 * @version	SVN: $Id: Url.php 279 2010-12-28 16:10:59Z jpm $
15
 * @version	SVN: $Id: Url.php 285 2011-01-03 14:17:18Z gduche $
16
 * @link		/doc/framework/
16
 * @link		/doc/framework/
17
*/
17
*/
18
class Url {
18
class Url {
Line 19... Line 19...
19
 
19
 
Line 402... Line 402...
402
			$url .= '#' . $this->fragment;
402
			$url .= '#' . $this->fragment;
403
		}
403
		}
Line 404... Line 404...
404
 
404
 
405
		return $url;
405
		return $url;
-
 
406
	}
-
 
407
	
-
 
408
	/**
-
 
409
	 * Renvoie la valeur de l'option specifiée.
-
 
410
	 *
-
 
411
	 * @param string $nomOption Nom de l'option demandée
-
 
412
	 *
-
 
413
	 * @return  mixed
-
 
414
	 */
-
 
415
	function getOption($nomOption) {
-
 
416
		return isset($this->options[$nomOption])
-
 
417
			? $this->options[$nomOption] : false;
406
	}
418
	}
407
}
419
}
408
?>
420
?>