MediaWiki  1.34.0
Defines.php
Go to the documentation of this file.
1 <?php
23 require_once __DIR__ . '/libs/mime/defines.php';
24 require_once __DIR__ . '/libs/rdbms/defines.php';
25 
27 
32 # Obsolete aliases
33 
38 define( 'LIST_COMMA', IDatabase::LIST_COMMA );
39 define( 'LIST_AND', IDatabase::LIST_AND );
40 define( 'LIST_SET', IDatabase::LIST_SET );
41 define( 'LIST_NAMES', IDatabase::LIST_NAMES );
42 define( 'LIST_OR', IDatabase::LIST_OR );
48 define( 'NS_MEDIA', -2 );
49 define( 'NS_SPECIAL', -1 );
60 define( 'NS_MAIN', 0 );
61 define( 'NS_TALK', 1 );
62 define( 'NS_USER', 2 );
63 define( 'NS_USER_TALK', 3 );
64 define( 'NS_PROJECT', 4 );
65 define( 'NS_PROJECT_TALK', 5 );
66 define( 'NS_FILE', 6 );
67 define( 'NS_FILE_TALK', 7 );
68 define( 'NS_MEDIAWIKI', 8 );
69 define( 'NS_MEDIAWIKI_TALK', 9 );
70 define( 'NS_TEMPLATE', 10 );
71 define( 'NS_TEMPLATE_TALK', 11 );
72 define( 'NS_HELP', 12 );
73 define( 'NS_HELP_TALK', 13 );
74 define( 'NS_CATEGORY', 14 );
75 define( 'NS_CATEGORY_TALK', 15 );
81 define( 'CACHE_ANYTHING', -1 ); // Use anything, as long as it works
82 define( 'CACHE_NONE', 0 ); // Do not cache
83 define( 'CACHE_DB', 1 ); // Store cache objects in the DB
84 define( 'CACHE_MEMCACHED', 2 ); // MemCached, must specify servers in $wgMemCacheServers
85 define( 'CACHE_ACCEL', 3 ); // APC or WinCache
91 define( 'AV_NO_VIRUS', 0 ); # scan ok, no virus found
92 define( 'AV_VIRUS_FOUND', 1 ); # virus found!
93 define( 'AV_SCAN_ABORTED', -1 ); # scan aborted, the file is probably immune
94 define( 'AV_SCAN_FAILED', false ); # scan failed (scanner not found or error in scanner)
102 define( 'ALF_PRELOAD_LINKS', 1 ); // unused
103 define( 'ALF_PRELOAD_EXISTENCE', 2 ); // unused
104 define( 'ALF_NO_LINK_LOCK', 4 ); // unused
105 define( 'ALF_NO_BLOCK_LOCK', 8 ); // unused
112 define( 'MW_DATE_DEFAULT', 'default' );
113 define( 'MW_DATE_MDY', 'mdy' );
114 define( 'MW_DATE_DMY', 'dmy' );
115 define( 'MW_DATE_YMD', 'ymd' );
116 define( 'MW_DATE_ISO', 'ISO 8601' );
122 define( 'RC_EDIT', 0 );
123 define( 'RC_NEW', 1 );
124 define( 'RC_LOG', 3 );
125 define( 'RC_EXTERNAL', 5 );
126 define( 'RC_CATEGORIZE', 6 );
132 define( 'EDIT_NEW', 1 );
133 define( 'EDIT_UPDATE', 2 );
134 define( 'EDIT_MINOR', 4 );
135 define( 'EDIT_SUPPRESS_RC', 8 );
136 define( 'EDIT_FORCE_BOT', 16 );
137 define( 'EDIT_DEFER_UPDATES', 32 ); // Unused since 1.27
138 define( 'EDIT_AUTOSUMMARY', 64 );
139 define( 'EDIT_INTERNAL', 128 );
153 
164 define( 'OT_HTML', 1 );
165 define( 'OT_WIKI', 2 );
166 define( 'OT_PREPROCESS', 3 );
167 define( 'OT_MSG', 3 ); // b/c alias for OT_PREPROCESS
168 define( 'OT_PLAIN', 4 );
177 define( 'SFH_NO_HASH', 1 );
178 define( 'SFH_OBJECT_ARGS', 2 );
185 define( 'APCOND_EDITCOUNT', 1 );
186 define( 'APCOND_AGE', 2 );
187 define( 'APCOND_EMAILCONFIRMED', 3 );
188 define( 'APCOND_INGROUPS', 4 );
189 define( 'APCOND_ISIP', 5 );
190 define( 'APCOND_IPINRANGE', 6 );
191 define( 'APCOND_AGE_FROM_EDIT', 7 );
192 define( 'APCOND_BLOCKED', 8 );
193 define( 'APCOND_ISBOT', 9 );
199 define( 'PROTO_HTTP', 'http://' );
200 define( 'PROTO_HTTPS', 'https://' );
201 define( 'PROTO_RELATIVE', '//' );
202 define( 'PROTO_CURRENT', null );
203 define( 'PROTO_CANONICAL', 1 );
204 define( 'PROTO_INTERNAL', 2 );
215 define( 'CONTENT_MODEL_WIKITEXT', 'wikitext' );
216 define( 'CONTENT_MODEL_JAVASCRIPT', 'javascript' );
217 define( 'CONTENT_MODEL_CSS', 'css' );
218 define( 'CONTENT_MODEL_TEXT', 'text' );
219 define( 'CONTENT_MODEL_JSON', 'json' );
229 // wikitext
230 define( 'CONTENT_FORMAT_WIKITEXT', 'text/x-wiki' );
231 // for js pages
232 define( 'CONTENT_FORMAT_JAVASCRIPT', 'text/javascript' );
233 // for css pages
234 define( 'CONTENT_FORMAT_CSS', 'text/css' );
235 // for future use, e.g. with some plain-html messages.
236 define( 'CONTENT_FORMAT_TEXT', 'text/plain' );
237 // for future use, e.g. with some plain-html messages.
238 define( 'CONTENT_FORMAT_HTML', 'text/html' );
239 // for future use with the api and for extensions
240 define( 'CONTENT_FORMAT_SERIALIZED', 'application/vnd.php.serialized' );
241 // for future use with the api, and for use by extensions
242 define( 'CONTENT_FORMAT_JSON', 'application/json' );
243 // for future use with the api, and for use by extensions
244 define( 'CONTENT_FORMAT_XML', 'application/xml' );
250 define( 'SHELL_MAX_ARG_STRLEN', '100000' );
264 define( 'SCHEMA_COMPAT_WRITE_OLD', 0x01 );
265 define( 'SCHEMA_COMPAT_READ_OLD', 0x02 );
266 define( 'SCHEMA_COMPAT_WRITE_NEW', 0x10 );
267 define( 'SCHEMA_COMPAT_READ_NEW', 0x20 );
295 define( 'MIGRATION_OLD', 0x00000000 | SCHEMA_COMPAT_OLD );
298 define( 'MIGRATION_NEW', 0x30000000 | SCHEMA_COMPAT_NEW );
308 define( 'XML_DUMP_SCHEMA_VERSION_10', '0.10' );
309 define( 'XML_DUMP_SCHEMA_VERSION_11', '0.11' );
OT_MSG
const OT_MSG
Definition: Defines.php:167
CONTENT_MODEL_JSON
const CONTENT_MODEL_JSON
Definition: Defines.php:219
MW_DATE_DMY
const MW_DATE_DMY
Definition: Defines.php:114
MW_SUPPORTS_PARSERFIRSTCALLINIT
const MW_SUPPORTS_PARSERFIRSTCALLINIT
Definition: Defines.php:145
RC_EXTERNAL
const RC_EXTERNAL
Definition: Defines.php:125
PROTO_CANONICAL
const PROTO_CANONICAL
Definition: Defines.php:203
SCHEMA_COMPAT_READ_NEW
const SCHEMA_COMPAT_READ_NEW
Definition: Defines.php:267
APCOND_ISBOT
const APCOND_ISBOT
Definition: Defines.php:193
CONTENT_FORMAT_HTML
const CONTENT_FORMAT_HTML
Definition: Defines.php:238
PROTO_INTERNAL
const PROTO_INTERNAL
Definition: Defines.php:204
EDIT_FORCE_BOT
const EDIT_FORCE_BOT
Definition: Defines.php:136
ALF_PRELOAD_LINKS
const ALF_PRELOAD_LINKS
Definition: Defines.php:102
EDIT_INTERNAL
const EDIT_INTERNAL
Definition: Defines.php:139
MW_DATE_YMD
const MW_DATE_YMD
Definition: Defines.php:115
ALF_NO_BLOCK_LOCK
const ALF_NO_BLOCK_LOCK
Definition: Defines.php:105
ALF_NO_LINK_LOCK
const ALF_NO_LINK_LOCK
Definition: Defines.php:104
CONTENT_MODEL_CSS
const CONTENT_MODEL_CSS
Definition: Defines.php:217
RC_LOG
const RC_LOG
Definition: Defines.php:124
MIGRATION_NEW
const MIGRATION_NEW
Definition: Defines.php:298
ALF_PRELOAD_EXISTENCE
const ALF_PRELOAD_EXISTENCE
Definition: Defines.php:103
APCOND_EDITCOUNT
const APCOND_EDITCOUNT
Definition: Defines.php:185
SFH_OBJECT_ARGS
const SFH_OBJECT_ARGS
Definition: Defines.php:178
OT_PREPROCESS
const OT_PREPROCESS
Definition: Defines.php:166
OT_PLAIN
const OT_PLAIN
Definition: Defines.php:168
MIGRATION_WRITE_BOTH
const MIGRATION_WRITE_BOTH
Definition: Defines.php:296
RC_EDIT
const RC_EDIT
Definition: Defines.php:122
APCOND_AGE
const APCOND_AGE
Definition: Defines.php:186
CONTENT_FORMAT_CSS
const CONTENT_FORMAT_CSS
Definition: Defines.php:234
CONTENT_MODEL_WIKITEXT
const CONTENT_MODEL_WIKITEXT
Definition: Defines.php:215
LIST_AND
const LIST_AND
Definition: Defines.php:39
MW_EDITFILTERMERGED_SUPPORTS_API
const MW_EDITFILTERMERGED_SUPPORTS_API
Definition: Defines.php:148
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:38
MIGRATION_WRITE_NEW
const MIGRATION_WRITE_NEW
Definition: Defines.php:297
CONTENT_FORMAT_XML
const CONTENT_FORMAT_XML
Definition: Defines.php:244
LIST_OR
const LIST_OR
Definition: Defines.php:42
APCOND_AGE_FROM_EDIT
const APCOND_AGE_FROM_EDIT
Definition: Defines.php:191
CONTENT_FORMAT_JSON
const CONTENT_FORMAT_JSON
Definition: Defines.php:242
APCOND_ISIP
const APCOND_ISIP
Definition: Defines.php:189
CONTENT_FORMAT_SERIALIZED
const CONTENT_FORMAT_SERIALIZED
Definition: Defines.php:240
SHELL_MAX_ARG_STRLEN
const SHELL_MAX_ARG_STRLEN
Definition: Defines.php:250
LIST_SET
const LIST_SET
Definition: Defines.php:40
APCOND_BLOCKED
const APCOND_BLOCKED
Definition: Defines.php:192
PROTO_CURRENT
const PROTO_CURRENT
Definition: Defines.php:202
CONTENT_FORMAT_TEXT
const CONTENT_FORMAT_TEXT
Definition: Defines.php:236
OT_WIKI
const OT_WIKI
Definition: Defines.php:165
CONTENT_FORMAT_WIKITEXT
const CONTENT_FORMAT_WIKITEXT
Definition: Defines.php:230
PROTO_HTTPS
const PROTO_HTTPS
Definition: Defines.php:200
MW_DATE_DEFAULT
const MW_DATE_DEFAULT
Definition: Defines.php:112
LIST_COMMA
const LIST_COMMA
Definition: Defines.php:38
MIGRATION_OLD
const MIGRATION_OLD
Definition: Defines.php:295
MW_SUPPORTS_CONTENTHANDLER
const MW_SUPPORTS_CONTENTHANDLER
Definition: Defines.php:147
EDIT_UPDATE
const EDIT_UPDATE
Definition: Defines.php:133
MW_DATE_ISO
const MW_DATE_ISO
Definition: Defines.php:116
SCHEMA_COMPAT_WRITE_OLD
const SCHEMA_COMPAT_WRITE_OLD
Definition: Defines.php:264
PROTO_HTTP
const PROTO_HTTP
Definition: Defines.php:199
SCHEMA_COMPAT_WRITE_NEW
const SCHEMA_COMPAT_WRITE_NEW
Definition: Defines.php:266
PROTO_RELATIVE
const PROTO_RELATIVE
Definition: Defines.php:201
XML_DUMP_SCHEMA_VERSION_11
const XML_DUMP_SCHEMA_VERSION_11
Definition: Defines.php:309
EDIT_DEFER_UPDATES
const EDIT_DEFER_UPDATES
Definition: Defines.php:137
RC_NEW
const RC_NEW
Definition: Defines.php:123
SFH_NO_HASH
const SFH_NO_HASH
Definition: Defines.php:177
EDIT_NEW
const EDIT_NEW
Definition: Defines.php:132
APCOND_INGROUPS
const APCOND_INGROUPS
Definition: Defines.php:188
OT_HTML
const OT_HTML
Definition: Defines.php:164
MW_SUPPORTS_RESOURCE_MODULES
const MW_SUPPORTS_RESOURCE_MODULES
Support for $wgResourceModules.
Definition: Defines.php:152
EDIT_AUTOSUMMARY
const EDIT_AUTOSUMMARY
Definition: Defines.php:138
SCHEMA_COMPAT_NEW
const SCHEMA_COMPAT_NEW
Definition: Defines.php:271
SCHEMA_COMPAT_OLD
const SCHEMA_COMPAT_OLD
Definition: Defines.php:270
SCHEMA_COMPAT_WRITE_BOTH
const SCHEMA_COMPAT_WRITE_BOTH
Definition: Defines.php:268
CONTENT_MODEL_JAVASCRIPT
const CONTENT_MODEL_JAVASCRIPT
Definition: Defines.php:216
RC_CATEGORIZE
const RC_CATEGORIZE
Definition: Defines.php:126
CONTENT_FORMAT_JAVASCRIPT
const CONTENT_FORMAT_JAVASCRIPT
Definition: Defines.php:232
MW_DATE_MDY
const MW_DATE_MDY
Definition: Defines.php:113
EDIT_MINOR
const EDIT_MINOR
Definition: Defines.php:134
EDIT_SUPPRESS_RC
const EDIT_SUPPRESS_RC
Definition: Defines.php:135
LIST_NAMES
const LIST_NAMES
Definition: Defines.php:41
CONTENT_MODEL_TEXT
const CONTENT_MODEL_TEXT
Definition: Defines.php:218
MW_SUPPORTS_LOCALISATIONCACHE
const MW_SUPPORTS_LOCALISATIONCACHE
Definition: Defines.php:146
XML_DUMP_SCHEMA_VERSION_10
const XML_DUMP_SCHEMA_VERSION_10
Definition: Defines.php:308
SCHEMA_COMPAT_READ_BOTH
const SCHEMA_COMPAT_READ_BOTH
Definition: Defines.php:269
SCHEMA_COMPAT_READ_OLD
const SCHEMA_COMPAT_READ_OLD
Definition: Defines.php:265
APCOND_EMAILCONFIRMED
const APCOND_EMAILCONFIRMED
Definition: Defines.php:187
APCOND_IPINRANGE
const APCOND_IPINRANGE
Definition: Defines.php:190