( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ
<?php
/*
* Copyright (c) 2025 AltumCode (https://altumcode.com/)
*
* This software is licensed exclusively by AltumCode and is sold only via https://altumcode.com/.
* Unauthorized distribution, modification, or use of this software without a valid license is not permitted and may be subject to applicable legal actions.
*
* 🌍 View all other existing AltumCode projects via https://altumcode.com/
* 📧 Get in touch for support or general queries via https://altumcode.com/contact
* 📤 Download the latest version via https://altumcode.com/downloads
*
* 🐦 X/Twitter: https://x.com/AltumCode
* 📘 Facebook: https://facebook.com/altumcode
* 📸 Instagram: https://instagram.com/altumcode
*/
defined('ALTUMCODE') || die();
define('ROOT_PATH', realpath(__DIR__ . '/..') . '/');
const APP_PATH = ROOT_PATH . 'app/';
const PLUGINS_PATH = ROOT_PATH . 'plugins/';
const THEME_PATH = ROOT_PATH . 'themes/altum/';
const THEME_URL_PATH = 'themes/altum/';
const ASSETS_PATH = THEME_PATH . 'assets/';
const ASSETS_URL_PATH = THEME_URL_PATH . 'assets/';
const UPLOADS_PATH = ROOT_PATH . 'uploads/';
const UPLOADS_URL_PATH = 'uploads/';
const CACHE_DEFAULT_SECONDS = 2592000;
/* Starting to include the required files */
require_once APP_PATH . 'includes/debug.php';
if(!DEBUG) require_once APP_PATH . 'includes/500.php';
require_once APP_PATH . 'includes/product.php';
/* Config file */
require_once ROOT_PATH . 'config.php';
/* Establish cookie / session on this path specifically */
define('COOKIE_PATH', preg_replace('|https?://[^/]+|i', '', SITE_URL));
/* Determine if we should set the samesite=strict */
session_set_cookie_params([
'lifetime' => null,
'path' => COOKIE_PATH,
'samesite' => 'Lax',
'secure' => str_starts_with(SITE_URL, 'https://'),
]);
/* Autoloader */
spl_autoload_register (function ($class) {
$namespace_prefix = 'Altum';
$split = explode('\\', $class);
if($split[0] !== $namespace_prefix) {
return;
}
/* Altum core */
if(isset($split[1]) && !isset($split[2])) {
require_once APP_PATH . 'core/' . $split[1] . '.php';
}
/* Traits, Models, Helpers */
if(isset($split[1], $split[2]) && in_array($split[1], ['Traits', 'Models', 'Helpers'])) {
$folder = mb_strtolower($split[1]);
require_once APP_PATH . $folder . '/' . $split[2] . '.php';
}
/* Payment Gateways helpers */
if(isset($split[1], $split[2]) && $split[1] == 'PaymentGateways') {
require_once APP_PATH . 'helpers/payment-gateways/' . $split[2] . '.php';
}
/* Qr codes helpers */
if(isset($split[1], $split[2]) && $split[1] == 'QrCodes') {
require_once APP_PATH . 'helpers/qr-codes/' . $split[2] . '.php';
}
});
/* Require files */
require_once APP_PATH . 'core/Controller.php';
require_once APP_PATH . 'core/Model.php';
require_once APP_PATH . 'core/NotFoundException.php';
/* Load some helpers */
require_once APP_PATH . 'helpers/Link.php';
require_once APP_PATH . 'helpers/core.php';
require_once APP_PATH . 'helpers/sessions.php';
require_once APP_PATH . 'helpers/sessions.php';
require_once APP_PATH . 'helpers/others.php';
require_once APP_PATH . 'helpers/links.php';
require_once APP_PATH . 'helpers/strings.php';
require_once APP_PATH . 'helpers/email.php';
require_once APP_PATH . 'helpers/66uptime.php';
/* Autoload for vendor */
require_once ROOT_PATH . 'vendor/autoload.php';