Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 494 Rev 517
Line 32... Line 32...
32
	 * Constructeur vide
32
	 * Constructeur vide
33
	 */
33
	 */
34
	public function __construct() {
34
	public function __construct() {
35
		$sortie = array(
35
		$sortie = array(
36
			'titre' => '', 'description' => '', 'tags' => '',
36
			'titre' => '', 'description' => '', 'tags' => '',
37
			'styles' => '', 'scripts' => '', 'tags' => '',
37
			'entete' => '', 'tags' => '',
38
			'corps' => '', 'tete' => '', 'pied' => '',
38
			'corps' => '', 'tete' => '', 'pied' => '',
39
			'navigation' => '', 'menu' => '');
39
			'navigation' => '', 'menu' => '');
Line 40... Line 40...
40
 
40
 
41
		self::$parametres = array(
41
		self::$parametres = array(
Line 245... Line 245...
245
		$sortie = self::convertirEncodage($contenu);
245
		$sortie = self::convertirEncodage($contenu);
246
		return $sortie;
246
		return $sortie;
247
	}
247
	}
Line 248... Line 248...
248
 
248
 
249
	/**
249
	/**
250
	 * Retourne les scripts (Javascripts) spécifiques à l'application.
250
	 * Retourne les informations à placer dans la balise HEAD du HTML.
251
	 */
-
 
252
	public static function getScripts() {
-
 
253
		$contenu = self::$parametres['sortie']['scripts'];
-
 
254
		$sortie = self::convertirEncodage($contenu);
-
 
255
		return $sortie;
-
 
256
	}
-
 
257
 
-
 
258
	/**
-
 
259
	 * Retourne les styles (CSS) spécifiques à l'application.
-
 
260
	 */
251
	 */
261
	public static function getStyles() {
252
	public static function getEntete() {
262
		$contenu = self::$parametres['sortie']['styles'];
253
		$contenu = self::$parametres['sortie']['entete'];
263
		$sortie = self::convertirEncodage($contenu);
254
		$sortie = self::convertirEncodage($contenu);
264
		return $sortie;
255
		return $sortie;
Line 265... Line 256...
265
	}
256
	}