You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/api/autoload.php

25 lines
848 B
PHTML

<?php
// Responsible for loading in all necessary scripts and kicking off the DependencyManager
define('IN_SCRIPT', 1);
define('HESK_PATH', '../');
require_once(__DIR__ . '/core/common.php');
require_once(__DIR__ . '/Link.php');
require_once(__DIR__ . '/../hesk_settings.inc.php');
// FILES
require_once(__DIR__ . '/http_response_code.php');
require_once(__DIR__ . '/dao/category/CategoryGateway.php');
require_once(__DIR__ . '/businesslogic/category/CategoryRetriever.php');
require_once(__DIR__ . '/businesslogic/category/Category.php');
require_once(__DIR__ . '/controllers/CategoryController.php');
hesk_load_api_database_functions();
// HESK files that require database access
require_once(__DIR__ . '/../inc/custom_fields.inc.php');
require_once(__DIR__ . '/DependencyManager.php');
$applicationContext = new \Core\DependencyManager();