Files
admin_hura_8/_shared.php

18 lines
392 B
PHP
Raw Permalink Normal View History

2024-01-18 23:13:02 +07:00
<?php
2024-01-29 10:39:53 +07:00
const ROOT_DIR = __DIR__;
const CONFIG_DIR = ROOT_DIR . '/inc/config';
2024-01-18 23:13:02 +07:00
2024-01-29 10:39:53 +07:00
const IMAGE_FILE_SEPARATOR = "-";
define("CURRENT_TIME", time());
const STATIC_DOMAIN = "http://hura8.hurasoft.com";
const ENABLE_DB_DEBUG = true;
const LANGUAGE = 'vi';
const IS_DEFAULT_LANGUAGE = true;
include ROOT_DIR."/inc/common.php";
include ROOT_DIR."/inc/fun.db.php";
2024-01-18 23:13:02 +07:00
// start autoload
init_autoload();