forked from akeeba/panopticon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefines.php
22 lines (19 loc) · 942 Bytes
/
defines.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* @package panopticon
* @copyright Copyright (c)2023-2024 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license https://www.gnu.org/licenses/agpl-3.0.txt GNU Affero General Public License, version 3 or later
*/
defined('AKEEBA') || die;
const APATH_BASE = __DIR__;
const APATH_ROOT = APATH_BASE;
const APATH_SITE = APATH_ROOT;
const APATH_CONFIGURATION = APATH_ROOT;
const APATH_MEDIA = APATH_BASE . DIRECTORY_SEPARATOR . 'media';
const APATH_THEMES = APATH_BASE . DIRECTORY_SEPARATOR . 'templates';
const APATH_TRANSLATION = APATH_BASE . DIRECTORY_SEPARATOR . 'languages';
const APATH_CACHE = APATH_BASE . DIRECTORY_SEPARATOR . 'cache';
const APATH_TMP = APATH_BASE . DIRECTORY_SEPARATOR . 'tmp';
const APATH_LOG = APATH_BASE . DIRECTORY_SEPARATOR . 'log';
const APATH_PLUGIN = APATH_BASE . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'Plugin';
const APATH_USER_CODE = APATH_BASE . DIRECTORY_SEPARATOR . 'user_code';