hasIdentity() ) { $theme = !empty($auth->getIdentity()->theme) ? $auth->getIdentity()->theme : 'default'; } //Sauvegarde des paramètres du themes pour gérer les scripts et styles à utiliser $paramsTheme = new stdClass(); $paramsTheme->name = $theme; $paramsTheme->pathStyle = '/themes/'.$theme.'/styles'; $paramsTheme->pathScript = '/themes/'.$theme.'/scripts'; $paramsTheme->pathImg = '/themes/'.$theme.'/images'; Zend_Registry::set('theme', $paramsTheme); //Module default de l'application $layoutPath = APPLICATION_PATH . '/views/' . $theme; $viewPath = APPLICATION_PATH . '/views/' . $theme; //Surcharge des chemins de la vue et du layout $bootstrap = Zend_Controller_Front::getInstance()->getParam('bootstrap'); $view = $bootstrap->bootstrap('View')->getResource('View'); $view->setBasePath($viewPath); $layout = $bootstrap->bootstrap('Layout')->getResource('Layout'); $layout->setLayout('main'); $layout->setLayoutPath($layoutPath); //Load default style and javascript files for the selected theme switch ( $theme ) { default: case 'default': $view->doctype('HTML5'); $view->headMeta() ->appendHttpEquiv('Content-Type', 'text/html; charset=UTF-8') ->appendHttpEquiv('Content-Language', 'fr-FR'); $view->headLink() ->headLink(array('rel' => 'favicon', 'type' => 'image/png', 'href' => '/favicon.png')); $view->headLink() ->headLink(array('rel' => 'shortcut icon', 'type' => 'image/x-icon', 'href' => '/favicon.ico')); //Style $view->headLink() ->appendStylesheet($paramsTheme->pathStyle.'/normalize.css', 'all') ->appendStylesheet('/libs/ui/themes/smoothness/jquery-ui.css', 'all', 'IE 6') ->appendStylesheet('/libs/ui-1.10/themes/smoothness/jquery-ui.css', 'all') ->appendStylesheet($paramsTheme->pathStyle.'/main.css', 'all') ->appendStylesheet($paramsTheme->pathStyle.'/ie6.css', 'all', 'IE 6') ->appendStylesheet('/libs/qtip/jquery.qtip.css', 'all'); //Standard JavaScript $view->headScript() ->appendFile('/libs/jquery/jquery-1.9.0.min.js', 'text/javascript') ->appendFile('/libs/jquery/jquery-migrate-1.1.0.min.js', 'text/javascript') ->appendFile('/libs/jquery/jquery.bgiframe.js', 'text/javascript') ->appendFile('/libs/ui-1.10/jquery-ui.min.js', 'text/javascript') ->appendFile('/libs/ui-1.10/jquery-ui-i18n.min.js', 'text/javascript') ->appendFile('/libs/ui/jquery-ui.min.js', 'text/javascript', array('conditional' => 'IE 6')) ->appendFile('/libs/ui/jquery-ui-i18n.min.js', 'text/javascript', array('conditional' => 'IE 6')) ->appendFile('/libs/qtip/jquery.qtip.js', 'text/javascript') ->appendFile($paramsTheme->pathScript.'/script.js', 'text/javascript'); /* * Specialized Controller - Action javascript * controllerName.js || controllerName-actionName.js * array( * 'controller-action' => array('file.js'=> 'inline|file') * ) * */ $scripts = array( 'identite-fiche' => array( 'identite-fiche.js' => 'inline', ), 'identite-fichepc' => array( 'identite-fiche.js' => 'inline', ), 'identite-geo' => array( 'identite-geo.js' => 'file', ), 'identite-groupe' => array( 'identite-groupe.js' => 'inline', ), 'identite-liens' => array( 'identite-liens.js' => 'inline', 'identite-groupe.js' => 'inline', ), 'evaluation-indiscore3' => array( 'identite-fiche.js' => 'inline', ), ); if ( count($scripts)>0 ) { $controller = $request->getControllerName(); $action = $request->getActionName(); //Controller $key = null; if ( array_key_exists($controller, $scripts) ) { $key = $controller; } if ( $key ) { $options = $scripts[$key]; if ( is_array($options) ) { foreach ( $options as $file => $type ) { switch ( $type ) { case 'inline': $file = APPLICATION_PATH.'/../public/'.$paramsTheme->pathScript.'/'.$file; $contentScript = file_get_contents($file); $view->inlineScript()->appendScript($contentScript); break; case 'file': $view->headScript()->appendFile($paramsTheme->pathScript.'/'.$file, 'text/javascript'); break; } } } } //Controller-Action $key = null; if ( array_key_exists($controller.'-'.$action, $scripts) ) { $key = $controller.'-'.$action; } if ( $key ) { $options = $scripts[$key]; if ( is_array($options) ) { foreach ( $options as $file => $type ) { switch ( $type ) { case 'inline': $file = APPLICATION_PATH.'/../public/'.$paramsTheme->pathScript.'/'.$file; $contentScript = file_get_contents($file); $view->inlineScript()->appendScript($contentScript); break; case 'file': $view->headScript()->appendFile($paramsTheme->pathScript.'/'.$file, 'text/javascript'); break; } } } } } break; case 'mobile': $view->doctype('HTML5'); $view->headMeta() ->appendName('charset', 'utf-8') ->appendName('viewport', 'width=device-width, initial-scale=1'); //Style $view->headLink() //->appendStylesheet('/main.css', 'all') ->appendStylesheet('/libs/mobile/jquery.mobile.css', 'all'); //JavaScript $view->headScript() ->appendFile('/libs/jquery/jquery.js') ->appendFile($paramsTheme->pathScript.'/script.js', 'text/javascript') ->appendFile('/libs/mobile/jquery.mobile.js'); break; } } }