forked from SemanticMediaWiki/SemanticExtraSpecialProperties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DefaultSettings.php
39 lines (33 loc) · 871 Bytes
/
DefaultSettings.php
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
<?php
/**
* DO NOT EDIT!
*
* The following default settings are to be used by the extension itself,
* please modify settings in the LocalSettings file.
*
* @codeCoverageIgnore
*/
if ( !defined( 'MEDIAWIKI' ) ) {
die( 'This file is part of the SemanticExtraSpecialProperties extension, it is not a valid entry point.' );
}
/**
* MessageCache
*/
$GLOBALS['sespCacheType'] = CACHE_ANYTHING;
/**
* To setup properties as fixed properties in order to improve data access
*/
$GLOBALS['sespUseAsFixedTables'] = false;
/**
* Specifies the enabled properties
*/
$GLOBALS['sespSpecialProperties'] = array();
/**
* It causes bot edits via user accounts in usergroup "bot" to be ignored when
* storing data for the special properties.
*/
$GLOBALS['wgSESPExcludeBots'] = false;
/**
* Use in connection with ShortUrlUtils
*/
$GLOBALS['wgShortUrlPrefix'] = '';