-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
SemanticResultFormats.hooks.php
158 lines (139 loc) · 3.83 KB
/
SemanticResultFormats.hooks.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
/**
* Static class for hooks handled by the Semantic Result Formats.
*
* @since 1.7
*
* @license GPL-2.0-or-later
* @author Jeroen De Dauw < [email protected] >
* @author mwjames
*/
final class SRFHooks {
/**
* Hook to add PHPUnit test cases.
* @see https://www.mediawiki.org/wiki/Manual:Hooks/UnitTestsList
*
* @since 1.8
*
* @param array &$files
*
* @return bool
*/
public static function registerUnitTests( array &$files ) {
// Keep this in alphabetical order please!
$testFiles = [
'Resources',
// Formats
'formats/Array',
'formats/Dygraphs',
'formats/EventCalendar',
'formats/Gallery',
'formats/Graph',
'formats/Incoming',
'formats/jqPlotChart',
'formats/jqPlotSeries',
'formats/ListWidget',
'formats/Math',
'formats/PageWidget',
'formats/Sparkline',
'formats/TagCloud',
'formats/Timeseries',
'formats/Tree',
'formats/vCard',
'formats/MediaPlayer',
'formats/DataTables',
// Boilerplate
// Register your testclass
// 'formats/Boilerplate',
];
foreach ( $testFiles as $file ) {
$files[] = __DIR__ . '/tests/phpunit/' . $file . 'Test.php';
}
return true;
}
/**
* Adds a link to Admin Links page.
*
* @since 1.7
*
* @param ALTree &$admin_links_tree
*
* @return bool
*/
public static function addToAdminLinks( ALTree &$admin_links_tree ) {
$displaying_data_section = $admin_links_tree->getSection( wfMessage( 'smw_adminlinks_displayingdata' )->text() );
// Escape is SMW hasn't added links.
if ( $displaying_data_section === null ) {
return true;
}
$smw_docu_row = $displaying_data_section->getRow( 'smw' );
$srf_docu_label = wfMessage( 'adminlinks_documentation', wfMessage( 'srf-name' )->text() )->text();
$smw_docu_row->addItem( AlItem::newFromExternalLink( 'https://www.mediawiki.org/wiki/Extension:Semantic_Result_Formats', $srf_docu_label ) );
return true;
}
/**
* Hook: ResourceLoaderGetConfigVars called right before
* ResourceLoaderStartUpModule::getConfig returns
*
* @see https://www.mediawiki.org/wiki/Manual:Hooks/ResourceLoaderGetConfigVars
*
* @param &$vars Array of variables to be added into the output of the startup module.
*
* @return true
*/
public static function onResourceLoaderGetConfigVars( &$vars ) {
$vars['srf-config'] = [
'version' => SRF_VERSION,
'settings' => [
'wgThumbLimits' => $GLOBALS['wgThumbLimits'],
'srfgScriptPath' => $GLOBALS['srfgScriptPath'],
]
];
return true;
}
/**
* @see https://www.mediawiki.org/wiki/Manual:Hooks/BeforePageDisplay
*
* @param OutputPage &$outputPage
* @param Skin &$skin
*
* @return true
*/
public static function onBeforePageDisplay( &$outputPage, &$skin ) {
$outputPage->addModuleStyles( 'ext.srf.styles' );
return true;
}
/**
* Hook: GetPreferences adds user preference
* @see https://www.mediawiki.org/wiki/Manual:Hooks/GetPreferences
*
* @param User $user
* @param array &$preferences
*
* @return true
*/
public static function onGetPreferences( $user, &$preferences ) {
// Intro text, do not escape the message here as it contains
// href links
$preferences['srf-prefs-intro'] = [
'type' => 'info',
'label' => ' ',
'default' => wfMessage( 'srf-prefs-intro-text' )->parseAsBlock(),
'section' => 'smw/srf',
'raw' => 1,
];
// Enable auto update during a page refresh
$preferences['srf-prefs-eventcalendar-options-update-default'] = [
'type' => 'toggle',
'label-message' => 'srf-prefs-eventcalendar-options-update-default',
'section' => 'smw/srf-eventcalendar-options',
];
// Enable paneView by default
$preferences['srf-prefs-eventcalendar-options-paneview-default'] = [
'type' => 'toggle',
'label-message' => 'srf-prefs-eventcalendar-options-paneview-default',
'section' => 'smw/srf-eventcalendar-options',
];
return true;
}
}