1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
<?php
/**
* Set up globally available constants
*/
/**
* Auth Levels
* @file inc/auth.php
*/
define('AUTH_NONE', 0);
define('AUTH_READ', 1);
define('AUTH_EDIT', 2);
define('AUTH_CREATE', 4);
define('AUTH_UPLOAD', 8);
define('AUTH_DELETE', 16);
define('AUTH_ADMIN', 255);
/**
* Message types
* @see msg()
*/
define('MSG_PUBLIC', 0);
define('MSG_USERS_ONLY', 1);
define('MSG_MANAGERS_ONLY', 2);
define('MSG_ADMINS_ONLY', 4);
/**
* Lexer constants
* @see \dokuwiki\Parsing\Lexer\Lexer
*/
define('DOKU_LEXER_ENTER', 1);
define('DOKU_LEXER_MATCHED', 2);
define('DOKU_LEXER_UNMATCHED', 3);
define('DOKU_LEXER_EXIT', 4);
define('DOKU_LEXER_SPECIAL', 5);
/**
* Constants for known core changelog line types.
* @file inc/changelog.php
*/
define('DOKU_CHANGE_TYPE_CREATE', 'C');
define('DOKU_CHANGE_TYPE_EDIT', 'E');
define('DOKU_CHANGE_TYPE_MINOR_EDIT', 'e');
define('DOKU_CHANGE_TYPE_DELETE', 'D');
define('DOKU_CHANGE_TYPE_REVERT', 'R');
/**
* Changelog filter constants
* @file inc/changelog.php
*/
define('RECENTS_SKIP_DELETED', 2);
define('RECENTS_SKIP_MINORS', 4);
define('RECENTS_SKIP_SUBSPACES', 8);
define('RECENTS_MEDIA_CHANGES', 16);
define('RECENTS_MEDIA_PAGES_MIXED', 32);
define('RECENTS_ONLY_CREATION', 64);
/**
* Media error types
* @file inc/media.php
*/
define('DOKU_MEDIA_DELETED', 1);
define('DOKU_MEDIA_NOT_AUTH', 2);
define('DOKU_MEDIA_INUSE', 4);
define('DOKU_MEDIA_EMPTY_NS', 8);
/**
* Unusable password hash
* @file inc/auth.php
*/
define('DOKU_UNUSABLE_PASSWORD', '!unusable');
/**
* Mail header constants
*
* EOL is defined as CRLF in RFC822 and seems to work on modern systems. We had problems with
* older MTAs in the past that expected LF only, so this constant remains changeable for now
*
* @file inc/mail.php
* @file inc/Mailer.class.php
*/
// phpcs:disable
if (!defined('MAILHEADER_EOL')) define('MAILHEADER_EOL', "\r\n");
// phpcs:enable
// define('MAILHEADER_ASCIIONLY',1); // we currently don't use this
|