forked from ProfessionalWiki/Maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Maps.hooks.php
64 lines (53 loc) · 1.52 KB
/
Maps.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
<?php
/**
* Static class for hooks handled by the Maps extension.
*
* @since 0.7
*
* @licence GNU GPL v2+
* @author Jeroen De Dauw < [email protected] >
*/
final class MapsHooks {
/**
* Adds a link to Admin Links page.
*
* @since 0.7
*
* @param ALTree $admin_links_tree
*
* @return boolean
*/
public static function addToAdminLinks( ALTree &$admin_links_tree ) {
$displaying_data_section = $admin_links_tree->getSection(
wfMessage( 'smw_adminlinks_displayingdata' )->text()
);
// Escape if SMW hasn't added links.
if ( is_null( $displaying_data_section ) ) {
return true;
}
$smw_docu_row = $displaying_data_section->getRow( 'smw' );
$maps_docu_label = wfMessage( 'adminlinks_documentation', 'Maps' )->text();
$smw_docu_row->addItem(
AlItem::newFromExternalLink( 'https://www.semantic-mediawiki.org/wiki/Extension:Maps', $maps_docu_label )
);
return true;
}
/**
* Adds global JavaScript variables.
*
* @since 1.0
* @see http://www.mediawiki.org/wiki/Manual:Hooks/MakeGlobalVariablesScript
*
* @param array &$vars Variables to be added into the output
* @param OutputPage $outputPage OutputPage instance calling the hook
*
* @return boolean true in all cases
*/
public static function onMakeGlobalVariablesScript( array &$vars, OutputPage $outputPage ) {
global $egMapsGlobalJSVars;
$vars['egMapsDebugJS'] = $GLOBALS['egMapsDebugJS'];
$vars['egMapsAvailableServices'] = $GLOBALS['egMapsAvailableServices'];
$vars += $egMapsGlobalJSVars;
return true;
}
}