-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBug70672.php
37 lines (31 loc) · 962 Bytes
/
Bug70672.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
<?php
/**
* Bug70672
* Bug70672 Mediawiki Settings
*
* @author Alexia E. Smith
* @license LGPL v3.0
* @package Bug70672
* @link https://github.com/Alexia/Bug70672
*
**/
/******************************************/
/* Credits */
/******************************************/
$credits = [
'path' => __FILE__,
'name' => 'Bug70672',
'author' => 'Alexia E. Smith',
'descriptionmsg' => 'bug70672_description',
'license-name' => 'LGPL-3.0',
'version' => '1.0'
];
$wgExtensionCredits['other'][] = $credits;
/******************************************/
/* Language Strings, Page Aliases, Hooks */
/******************************************/
$extDir = __DIR__;
$wgExtensionMessagesFiles['Bug70672'] = "{$extDir}/Bug70672.i18n.php";
$wgMessagesDirs['Bug70672'] = "{$extDir}/i18n";
$wgAutoloadClasses['Bug70672Hooks'] = "{$extDir}/Bug70672.hooks.php";
$wgHooks['PageContentSave'][] = 'Bug70672Hooks::onPageContentSave';