Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 216 | Rev 517 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 216 Rev 494
Line 20... Line 20...
20
	const RENDU_TETE = 'tete';
20
	const RENDU_TETE = 'tete';
21
	const RENDU_CORPS = 'corps';
21
	const RENDU_CORPS = 'corps';
22
	const RENDU_PIED = 'pied';
22
	const RENDU_PIED = 'pied';
23
	const RENDU_NAVIGATION = 'navigation';
23
	const RENDU_NAVIGATION = 'navigation';
24
	const RENDU_MENU = 'menu';
24
	const RENDU_MENU = 'menu';
-
 
25
	const RENDU_SCRIPT = 'scripts';
-
 
26
	const RENDU_STYLE = 'styles';
Line 25... Line 27...
25
 
27
 
26
	private $sortie = array();
28
	private $sortie = array();
27
	protected $urlBase = null;
29
	protected $urlBase = null;
28
	protected $urlCourante = null;
30
	protected $urlCourante = null;
Line 70... Line 72...
70
	private function verifierExistenceTypeSortie($type) {
72
	private function verifierExistenceTypeSortie($type) {
71
		$existe = true;
73
		$existe = true;
72
		if ($type != self::RENDU_TETE &&
74
		if ($type != self::RENDU_TETE &&
73
			$type != self::RENDU_CORPS &&
75
			$type != self::RENDU_CORPS &&
74
			$type != self::RENDU_PIED &&
76
			$type != self::RENDU_PIED &&
-
 
77
			$type != self::RENDU_SCRIPT &&
-
 
78
			$type != self::RENDU_STYLE &&
75
			$type != self::RENDU_NAVIGATION &&
79
			$type != self::RENDU_NAVIGATION &&
76
			$type != self::RENDU_MENU &&
80
			$type != self::RENDU_MENU &&
77
			$type != self::META_TITRE &&
81
			$type != self::META_TITRE &&
78
			$type != self::META_DESCRIPTION &&
82
			$type != self::META_DESCRIPTION &&
79
			$type != self::META_TAGS) {
83
			$type != self::META_TAGS) {