Exemplo n.º 1
0
// Affichage de l'en-tête
entete();
?>
<head>
	<meta name="Description" content="SACoche - Suivi d'Acquisition de Compétences - Evaluer par compétences - Valider le socle commun" />
	<meta name="Keywords" content="SACoche Sésamath évaluer évaluation compétences compétence validation valider socle commun collège points Lomer" />
	<meta name="Author-Personal" content="Thomas Crespin pour Sésamath" />
	<meta name="Robots" content="index,follow" />
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<link rel="shortcut icon" type="images/x-icon" href="./favicon.ico" />
	<link rel="icon" type="image/png" href="./favicon.png" />
	<link rel="stylesheet" type="text/css" href="<?php echo compacter('./_css/style.css',VERSION_CSS_SCREEN,'mini') ?>" />
	<link rel="stylesheet" type="text/css" href="<?php echo compacter('./_css/style_print.css',VERSION_CSS_SCREEN,'mini') ?>" media="print" />
	<?php if(isset($_SESSION['CSS'])){echo'<style type="text/css">'.$_SESSION['CSS'].'</style>';} ?>
	<script type="text/javascript" charset="utf-8" src="./_js/jquery-librairies-<?php echo VERSION_JS_BIBLIO ?>.js"></script>
	<script type="text/javascript" charset="utf-8" src="<?php echo compacter('./_js/script.js',VERSION_JS_GLOBAL,'mini') ?>"></script>
	<title><?php echo $TITRE_NAVIGATEUR ?></title>
</head>
<body>
	<?php 
	if($_SESSION['USER_PROFIL']!='public')
	{
		// Espace identifié : cadre_haut (avec le menu) et cadre_bas (avec le contenu).
		echo'<div id="cadre_haut">'."\r\n";
		echo'	<div id="info">'."\r\n";
		echo'		<span class="button"><img alt="site officiel" src="./_img/favicon.gif" /> <a class="lien_ext" href="'.SERVEUR_PROJET.'">Site officiel</a></span>'."\r\n";
		echo'		<span class="button"><img alt="structure" src="./_img/home.png" /> '.html($_SESSION['DENOMINATION']).'</span>'."\r\n";
		echo'		<span class="button"><img alt="'.$_SESSION['USER_PROFIL'].'" src="./_img/menu/profil_'.$_SESSION['USER_PROFIL'].'.png" /> '.html($_SESSION['USER_PRENOM'].' '.$_SESSION['USER_NOM']).' ('.str_replace('eleve','élève',$_SESSION['USER_PROFIL']).')</span>'."\r\n";
		echo'		<span class="button"><span id="clock"><img alt="" src="./_img/clock_fixe.png" /> '.$_SESSION['DUREE_INACTIVITE'].' min</span><img alt="" src="./_img/point.gif" /></span>'."\r\n";
		echo'		<button id="deconnecter" value="'.$_SESSION['USER_PROFIL'].'"><img alt="" src="./_img/bouton/deconnecter.png" /> Déconnexion</button>'."\r\n";
		echo'	</div>'."\r\n";
Exemplo n.º 2
0
$position_css = mb_strpos($CONTENU_PAGE,'</style>');
if($position_css)
{
  $CSS_PERSO    = mb_substr($CONTENU_PAGE,0,$position_css+8);
  $CONTENU_PAGE = mb_substr($CONTENU_PAGE,$position_css+8);
}
else
{
  $CSS_PERSO    = NULL;
}

// Titre du navigateur
$TITRE_NAVIGATEUR = 'SACoche - Relevé HTML';

// Fichiers à inclure
$tab_fichiers_head = array();
$tab_fichiers_head[] = array( 'css' , compacter('./_css/style.css','mini') );
$tab_fichiers_head[] = array( 'js'  , compacter('./_js/jquery-librairies.js','mini') );
$tab_fichiers_head[] = array( 'js'  , compacter('./_js/script.js','pack') ); // la minification plante à sur le contenu de testURL() avec le message Fatal error: Uncaught exception 'JSMinException' with message 'Unterminated string literal.'

// Affichage de l'en-tête
declaration_entete( FALSE /*is_meta_robots*/ , TRUE /*is_favicon*/ , FALSE /*is_rss*/ , $tab_fichiers_head , $TITRE_NAVIGATEUR , $CSS_PERSO );
?>
<body>
  <?php echo $CONTENU_PAGE; ?>
  <script type="text/javascript">
    var PAGE='public_anti_maj_clock';
  </script>
</body>
</html>