2
0

header.php 513 B

123456789101112131415161718
  1. <?php
  2. setlocale(LC_TIME, 'fr_FR');
  3. date_default_timezone_set(TIME_ZONE);
  4. spl_autoload_register(function ($class_name) {
  5. (file_exists(DIR_PHP_CLASS.'/'.$class_name.'.class.php'))?
  6. require_once DIR_PHP_CLASS.'/'.$class_name.'.class.php' : '';
  7. });
  8. if(core::isDebug()){
  9. error_reporting(E_ALL);
  10. ini_set("display_errors", 1);
  11. }
  12. if(core::isMaintenance() AND $_SERVER['HTTP_HOST'] != DOMAIN_CMS){
  13. get::page("maintenance");
  14. exit();
  15. }