ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
constants.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 // User an role specific constants
26 const SYSTEM_USER_ID = 6;
27 const ANONYMOUS_USER_ID = 13;
28 const ANONYMOUS_ROLE_ID = 14;
29 const SYSTEM_ROLE_ID = 2;
30 
31 // Folder specific constants
32 const ROOT_FOLDER_ID = 1;
33 const USER_FOLDER_ID = 7;
34 const ROLE_FOLDER_ID = 8;
35 const SYSTEM_FOLDER_ID = 9;
36 const MAIL_SETTINGS_ID = 12;
37 const RECOVERY_FOLDER_ID = 15;
38 
39 // Installation and environment specific constants
40 const IL_INST_ID = '0';
41 const CLIENT_ID = 'phpstan';
42 const CLIENT_NAME = 'PHPStan';
43 const ABSOLUTE_PATH = '/';
44 const ILIAS_DATA_DIR = './external_data';
45 const ILIAS_WEB_DIR = 'public/data'; // this is only the name, not a path
46 const CLIENT_DATA_DIR = './external_data';
47 const CLIENT_WEB_DIR = './public/data';
48 
49 // Mail system specific constants
50 const MAILPATH = 'mail';
const IL_INST_ID
Definition: constants.php:40
const ANONYMOUS_USER_ID
Definition: constants.php:27
const USER_FOLDER_ID
Definition: constants.php:33
const ROOT_FOLDER_ID
Definition: constants.php:32
const CLIENT_NAME
Definition: constants.php:42
const SYSTEM_ROLE_ID
Definition: constants.php:29
const SYSTEM_USER_ID
This file contains constants for PHPStan analyis, see: https://phpstan.org/config-reference#constants...
Definition: constants.php:26
const MAILPATH
Definition: constants.php:50
const SYSTEM_FOLDER_ID
Definition: constants.php:35
const CLIENT_DATA_DIR
Definition: constants.php:46
const ABSOLUTE_PATH
Definition: constants.php:43
const CLIENT_ID
Definition: constants.php:41
const CLIENT_WEB_DIR
Definition: constants.php:47
const ROLE_FOLDER_ID
Definition: constants.php:34
const ILIAS_DATA_DIR
Definition: constants.php:44
const MAIL_SETTINGS_ID
Definition: constants.php:36
const ANONYMOUS_ROLE_ID
Definition: constants.php:28
const RECOVERY_FOLDER_ID
Definition: constants.php:37
const ILIAS_WEB_DIR
Definition: constants.php:45