<?php
 
/**
 
 *   __ _  ___  ___ ___   ___   ___     ____ _ __ ___   ___
 
 *  / _` |/  / / __/ _ \ / _ \ /  /    / __/| '_ ` _ \ /  /
 
 * | (_| |\  \| (_| (_) | (_) |\  \   | (__ | | | | | |\  \
 
 *  \__,_|/__/ \___\___/ \___/ /__/    \___\|_| |_| |_|/__/
 
 * 
 
 * 
 
 *************************************************************************************
 
 * @ASCOOS-NAME        : ASCOOS CMS 24'                                              *
 
 * @ASCOOS-VERSION     : 24.0.0                                                      *
 
 * @ASCOOS-CATEGORY    : Kernel (Frontend and Administration Side)                   *
 
 * @ASCOOS-CREATOR     : Drogidis Christos                                           *
 
 * @ASCOOS-SITE        : www.ascoos.com                                              *
 
 * @ASCOOS-LICENSE     : [Commercial] http://docs.ascoos.com/lics/ascoos/AGL-F.html  *
 
 * @ASCOOS-COPYRIGHT   : Copyright (c) 2007 - 2023, AlexSoft Software.               *
 
 *************************************************************************************
 
 *
 
 * @package            : phpBCL
 
 * @subpackage         : Compatibilities Autoload file
 
 * @source             : phpBCL8/autoload.php
 
 * @version            : 2.0.2
 
 * @created            : 2024-10-22 07:00:00 UTC+3
 
 * @updated            : 2024-12-08 07:00:00 UTC+3
 
 * @author             : Drogidis Christos
 
 * @authorSite         : www.alexsoft.gr
 
 */
 
 
 if (PHP_VERSION_ID < 80000) {
 
    if (!headers_sent()) {
 
        header('HTTP/1.1 500 Internal Server Error');
 
    }
 
 } else {
 
    $phpBCL_path = str_replace('\\', '/', __DIR__);
 
    include $phpBCL_path . "/src/coreCompatibilities.php";
 
 }
 
 ?>
 
 |