forked from SemanticMediaWiki/SemanticExtraSpecialProperties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefaultSettings.php
53 lines (43 loc) · 1.05 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?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.' );
}
return [
/**
* To setup properties as fixed properties in order to improve data access
*/
'sespgUseFixedTables' => false,
/**
* Location of the property definitions
*/
'sespgDefinitionsFile' => __DIR__ . '/data/definitions.json',
/**
* Specifies local definitions
*/
'sespgLocalDefinitions' => [],
/**
* Specifies the enabled properties
*/
'sespgEnabledPropertyList' => [],
/**
* Specifies an internal cache modifier
*/
'sespgLabelCacheVersion' => '2018.03',
/**
* It causes bot edits via user accounts in usergroup "bot" to be ignored when
* storing data for the special properties.
*/
'sespgExcludeBotEdits' => false,
/**
* Used in connection with ShortUrlUtils
*/
'wgShortUrlPrefix' => '',
];