MediaWiki REL1_37
Defines.php
Go to the documentation of this file.
1<?php
23require_once __DIR__ . '/libs/mime/defines.php';
24require_once __DIR__ . '/libs/rdbms/defines.php';
25
27
36define( 'MW_VERSION', '1.37.6' );
37
42define( 'LIST_COMMA', IDatabase::LIST_COMMA );
43define( 'LIST_AND', IDatabase::LIST_AND );
44define( 'LIST_SET', IDatabase::LIST_SET );
45define( 'LIST_NAMES', IDatabase::LIST_NAMES );
46define( 'LIST_OR', IDatabase::LIST_OR );
52define( 'NS_MEDIA', -2 );
53define( 'NS_SPECIAL', -1 );
64define( 'NS_MAIN', 0 );
65define( 'NS_TALK', 1 );
66define( 'NS_USER', 2 );
67define( 'NS_USER_TALK', 3 );
68define( 'NS_PROJECT', 4 );
69define( 'NS_PROJECT_TALK', 5 );
70define( 'NS_FILE', 6 );
71define( 'NS_FILE_TALK', 7 );
72define( 'NS_MEDIAWIKI', 8 );
73define( 'NS_MEDIAWIKI_TALK', 9 );
74define( 'NS_TEMPLATE', 10 );
75define( 'NS_TEMPLATE_TALK', 11 );
76define( 'NS_HELP', 12 );
77define( 'NS_HELP_TALK', 13 );
78define( 'NS_CATEGORY', 14 );
79define( 'NS_CATEGORY_TALK', 15 );
85define( 'CACHE_ANYTHING', -1 ); // Use anything, as long as it works
86define( 'CACHE_NONE', 0 ); // Do not cache
87define( 'CACHE_DB', 1 ); // Store cache objects in the DB
88define( 'CACHE_MEMCACHED', 2 ); // MemCached, must specify servers in $wgMemCacheServers
89define( 'CACHE_ACCEL', 3 ); // APC or WinCache
95define( 'AV_NO_VIRUS', 0 ); # scan ok, no virus found
96define( 'AV_VIRUS_FOUND', 1 ); # virus found!
97define( 'AV_SCAN_ABORTED', -1 ); # scan aborted, the file is probably immune
98define( 'AV_SCAN_FAILED', false ); # scan failed (scanner not found or error in scanner)
105define( 'MW_DATE_DEFAULT', 'default' );
106define( 'MW_DATE_MDY', 'mdy' );
107define( 'MW_DATE_DMY', 'dmy' );
108define( 'MW_DATE_YMD', 'ymd' );
109define( 'MW_DATE_ISO', 'ISO 8601' );
115define( 'RC_EDIT', 0 );
116define( 'RC_NEW', 1 );
117define( 'RC_LOG', 3 );
118define( 'RC_EXTERNAL', 5 );
119define( 'RC_CATEGORIZE', 6 );
125define( 'EDIT_NEW', 1 );
126define( 'EDIT_UPDATE', 2 );
127define( 'EDIT_MINOR', 4 );
128define( 'EDIT_SUPPRESS_RC', 8 );
129define( 'EDIT_FORCE_BOT', 16 );
130define( 'EDIT_DEFER_UPDATES', 32 ); // Unused since 1.27
131define( 'EDIT_AUTOSUMMARY', 64 );
132define( 'EDIT_INTERNAL', 128 );
146
157define( 'OT_HTML', 1 );
158define( 'OT_WIKI', 2 );
159define( 'OT_PREPROCESS', 3 );
160define( 'OT_MSG', 3 ); // b/c alias for OT_PREPROCESS
161define( 'OT_PLAIN', 4 );
170define( 'SFH_NO_HASH', 1 );
171define( 'SFH_OBJECT_ARGS', 2 );
178define( 'APCOND_EDITCOUNT', 1 );
179define( 'APCOND_AGE', 2 );
181define( 'APCOND_INGROUPS', 4 );
182define( 'APCOND_ISIP', 5 );
183define( 'APCOND_IPINRANGE', 6 );
184define( 'APCOND_AGE_FROM_EDIT', 7 );
185define( 'APCOND_BLOCKED', 8 );
186define( 'APCOND_ISBOT', 9 );
192define( 'PROTO_HTTP', 'http://' );
193define( 'PROTO_HTTPS', 'https://' );
194define( 'PROTO_RELATIVE', '//' );
195define( 'PROTO_CURRENT', null );
196define( 'PROTO_CANONICAL', 1 );
197define( 'PROTO_INTERNAL', 2 );
208define( 'CONTENT_MODEL_WIKITEXT', 'wikitext' );
209define( 'CONTENT_MODEL_JAVASCRIPT', 'javascript' );
210define( 'CONTENT_MODEL_CSS', 'css' );
211define( 'CONTENT_MODEL_TEXT', 'text' );
212define( 'CONTENT_MODEL_JSON', 'json' );
213define( 'CONTENT_MODEL_UNKNOWN', 'unknown' );
224define( 'CONTENT_FORMAT_WIKITEXT', 'text/x-wiki' );
226define( 'CONTENT_FORMAT_JAVASCRIPT', 'text/javascript' );
228define( 'CONTENT_FORMAT_CSS', 'text/css' );
230define( 'CONTENT_FORMAT_TEXT', 'text/plain' );
232define( 'CONTENT_FORMAT_HTML', 'text/html' );
234define( 'CONTENT_FORMAT_SERIALIZED', 'application/vnd.php.serialized' );
236define( 'CONTENT_FORMAT_JSON', 'application/json' );
238define( 'CONTENT_FORMAT_XML', 'application/xml' );
244define( 'SHELL_MAX_ARG_STRLEN', '100000' );
262define( 'SCHEMA_COMPAT_WRITE_OLD', 0x01 );
263define( 'SCHEMA_COMPAT_READ_OLD', 0x02 );
264define( 'SCHEMA_COMPAT_WRITE_TEMP', 0x10 );
265define( 'SCHEMA_COMPAT_READ_TEMP', 0x20 );
266define( 'SCHEMA_COMPAT_WRITE_NEW', 0x100 );
267define( 'SCHEMA_COMPAT_READ_NEW', 0x200 );
302define( 'MIGRATION_OLD', 0x00000000 | SCHEMA_COMPAT_OLD );
305define( 'MIGRATION_NEW', 0x30000000 | SCHEMA_COMPAT_NEW );
315define( 'XML_DUMP_SCHEMA_VERSION_10', '0.10' );
316define( 'XML_DUMP_SCHEMA_VERSION_11', '0.11' );
const SCHEMA_COMPAT_WRITE_BOTH
Definition Defines.php:270
const APCOND_BLOCKED
Definition Defines.php:185
const CONTENT_FORMAT_JAVASCRIPT
For JS pages.
Definition Defines.php:226
const SCHEMA_COMPAT_OLD
Definition Defines.php:274
const OT_WIKI
Definition Defines.php:158
const SFH_NO_HASH
Definition Defines.php:170
const CONTENT_FORMAT_HTML
For future use, e.g.
Definition Defines.php:232
const SCHEMA_COMPAT_WRITE_TEMP
Definition Defines.php:264
const CONTENT_FORMAT_JSON
For future use with the API, and for use by extensions.
Definition Defines.php:236
const SCHEMA_COMPAT_READ_NEW
Definition Defines.php:267
const PROTO_CANONICAL
Definition Defines.php:196
const EDIT_FORCE_BOT
Definition Defines.php:129
const APCOND_AGE
Definition Defines.php:179
const APCOND_EMAILCONFIRMED
Definition Defines.php:180
const SCHEMA_COMPAT_READ_BOTH
Definition Defines.php:273
const SFH_OBJECT_ARGS
Definition Defines.php:171
const SCHEMA_COMPAT_WRITE_TEMP_AND_NEW
Definition Defines.php:272
const EDIT_DEFER_UPDATES
Definition Defines.php:130
const EDIT_INTERNAL
Definition Defines.php:132
const EDIT_UPDATE
Definition Defines.php:126
const PROTO_HTTPS
Definition Defines.php:193
const SCHEMA_COMPAT_WRITE_OLD
Definition Defines.php:262
const APCOND_IPINRANGE
Definition Defines.php:183
const MW_SUPPORTS_CONTENTHANDLER
Definition Defines.php:140
const CONTENT_MODEL_CSS
Definition Defines.php:210
const APCOND_INGROUPS
Definition Defines.php:181
const RC_NEW
Definition Defines.php:116
const PROTO_CURRENT
Definition Defines.php:195
const MW_EDITFILTERMERGED_SUPPORTS_API
Definition Defines.php:141
const PROTO_INTERNAL
Definition Defines.php:197
const CONTENT_FORMAT_TEXT
For future use, e.g.
Definition Defines.php:230
const APCOND_ISBOT
Definition Defines.php:186
const APCOND_AGE_FROM_EDIT
Definition Defines.php:184
const EDIT_SUPPRESS_RC
Definition Defines.php:128
const MW_DATE_MDY
Definition Defines.php:106
const CONTENT_FORMAT_CSS
For CSS pages.
Definition Defines.php:228
const SCHEMA_COMPAT_WRITE_OLD_AND_TEMP
Definition Defines.php:271
const XML_DUMP_SCHEMA_VERSION_11
Definition Defines.php:314
const SCHEMA_COMPAT_READ_TEMP
Definition Defines.php:265
const OT_PLAIN
Definition Defines.php:161
const MW_DATE_DMY
Definition Defines.php:107
const MW_SUPPORTS_LOCALISATIONCACHE
Definition Defines.php:139
const OT_PREPROCESS
Definition Defines.php:159
const APCOND_ISIP
Definition Defines.php:182
const CONTENT_MODEL_WIKITEXT
Definition Defines.php:208
const MIGRATION_WRITE_NEW
Definition Defines.php:302
const SCHEMA_COMPAT_READ_OLD
Definition Defines.php:263
const XML_DUMP_SCHEMA_VERSION_10
Definition Defines.php:313
const CONTENT_MODEL_JSON
Definition Defines.php:212
const MIGRATION_NEW
Definition Defines.php:303
const RC_LOG
Definition Defines.php:117
const RC_EXTERNAL
Definition Defines.php:118
const MW_DATE_YMD
Definition Defines.php:108
const CONTENT_FORMAT_WIKITEXT
Wikitext.
Definition Defines.php:224
const PROTO_HTTP
Definition Defines.php:192
const OT_HTML
Definition Defines.php:157
const MW_SUPPORTS_RESOURCE_MODULES
Support for $wgResourceModules.
Definition Defines.php:145
const CONTENT_MODEL_TEXT
Definition Defines.php:211
const SCHEMA_COMPAT_WRITE_NEW
Definition Defines.php:266
const SHELL_MAX_ARG_STRLEN
Definition Defines.php:244
const SCHEMA_COMPAT_WRITE_MASK
Definition Defines.php:268
const APCOND_EDITCOUNT
Definition Defines.php:178
const MW_DATE_ISO
Definition Defines.php:109
const PROTO_RELATIVE
Definition Defines.php:194
const MW_DATE_DEFAULT
Definition Defines.php:105
const SCHEMA_COMPAT_NEW
Definition Defines.php:276
const CONTENT_FORMAT_SERIALIZED
For future use with the API and for extensions.
Definition Defines.php:234
const MIGRATION_WRITE_BOTH
Definition Defines.php:301
const SCHEMA_COMPAT_TEMP
Definition Defines.php:275
const RC_EDIT
Definition Defines.php:115
const MIGRATION_OLD
Definition Defines.php:300
const CONTENT_MODEL_UNKNOWN
Definition Defines.php:213
const MW_SUPPORTS_PARSERFIRSTCALLINIT
Definition Defines.php:138
const EDIT_MINOR
Definition Defines.php:127
const CONTENT_FORMAT_XML
For future use with the API, and for use by extensions.
Definition Defines.php:238
const SCHEMA_COMPAT_READ_MASK
Definition Defines.php:269
const CONTENT_MODEL_JAVASCRIPT
Definition Defines.php:209
const EDIT_AUTOSUMMARY
Definition Defines.php:131
const OT_MSG
Definition Defines.php:160
const EDIT_NEW
Definition Defines.php:125
const RC_CATEGORIZE
Definition Defines.php:119
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38