Files
nexusphp/include/bittorrent.php

12 lines
380 B
PHP
Raw Normal View History

2020-12-26 01:42:23 +08:00
<?php
2021-05-15 19:29:44 +08:00
define('IN_NEXUS', true);
$rootpath = dirname(__DIR__) . '/';
2020-12-26 01:42:23 +08:00
set_include_path(get_include_path() . PATH_SEPARATOR . $rootpath);
2022-03-18 19:59:27 +08:00
require $rootpath . 'include/globalfunctions.php';
require $rootpath . 'include/functions.php';
2021-05-15 19:29:44 +08:00
require $rootpath . 'include/core.php';
2021-02-22 17:55:53 +08:00
require $rootpath . 'classes/class_advertisement.php';
require $rootpath . 'classes/class_attendance.php';
2021-05-15 19:29:44 +08:00
2022-03-20 22:14:00 +08:00