summaryrefslogtreecommitdiff
path: root/skins/Parabola/Parabola.php
blob: abc6c7c6b2091a8851deaecd9c66c03005c514a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

if ( function_exists( 'wfLoadSkin' ) ) {
	wfLoadSkin( 'Parabola' );
	// Keep i18n globals so mergeMessageFileList.php doesn't break
	$wgMessagesDirs['MonoBook'] = __DIR__ . '/i18n';
	/* wfWarn(
		'Deprecated PHP entry point used for MonoBook skin. Please use wfLoadSkin instead, ' .
		'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
	); */
	return true;
} else {
	die( 'This version of the Parabola skin requires MediaWiki 1.25+' );
}