2
0

header.php 542 B

12345678910111213141516171819
  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. debug::startTimer();
  12. }
  13. if(core::isMaintenance() AND $_SERVER['HTTP_HOST'] != DOMAIN_CMS){
  14. get::page("maintenance");
  15. exit();
  16. }