35 lines
1.4 KiB
PHP
Executable File
35 lines
1.4 KiB
PHP
Executable File
<?php
|
|
// echo 'Je suis le fichier modale.head.php';
|
|
|
|
// -----------------------------------------------------
|
|
// Balises meta
|
|
// -----------------------------------------------------
|
|
echo '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />';
|
|
echo '<meta charset="UTF-8" />';
|
|
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />';
|
|
|
|
// -----------------------------------------------------
|
|
// Titre de la page par defaut
|
|
// ---------------------------------------------------
|
|
include ('./adminInclude/titrePageBrowser.php');
|
|
echo '<title id="pageTitle">' .$title. '</title>';
|
|
|
|
// -----------------------------------------------------
|
|
// Icône favori
|
|
// ---------------------------------------------------
|
|
echo '<link rel="icon" type="image/gif" href="' .$includeAdminDesign. '/admin.gif" />';
|
|
|
|
// -----------------------------------------------------
|
|
// scripts JS communs
|
|
// ---------------------------------------------------
|
|
echo '<script type="text/javascript" src="./adminInclude/_js/frmAdmin.js"></script>';
|
|
echo '<script type="text/javascript" src="./_modales/modales.js" ></script>';
|
|
|
|
// JS par page
|
|
include ("./_modales/switchModaleJS.php");
|
|
|
|
// -----------------------------------------------------
|
|
// Css
|
|
// ---------------------------------------------------
|
|
include ("./_modales/switchModaleCSS.php");
|
|
?>
|