25 lines
698 B
PHP
25 lines
698 B
PHP
|
<?php
|
||
|
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
|
||
|
{
|
||
|
//Initialisation global des paramètres de vue
|
||
|
protected function _initViewSettings()
|
||
|
{
|
||
|
$this->bootstrap('view');
|
||
|
$view = $this->getResource('view');
|
||
|
|
||
|
$view->setEncoding('UTF-8');
|
||
|
$view->doctype('XHTML1_STRICT');
|
||
|
$view->headMeta()
|
||
|
->appendHttpEquiv('Content-Type', 'text/html; charset=UTF-8')
|
||
|
->appendHttpEquiv('Content-Language', 'fr-FR');
|
||
|
//$view->headLink()
|
||
|
// ->appendStylesheet('/styles/main.css', 'all');
|
||
|
$view->headTitle('Extranet Scores & Décisions');
|
||
|
}
|
||
|
|
||
|
//protected function _initView(){}
|
||
|
//protected function _initLogging(){}
|
||
|
//protected function _initDb(){}
|
||
|
}
|
||
|
|