mediawiki-extensions-Cookie.../CookieWarning.php
Florian 97c134e397 Improve documentation of code and add test features (npm, composer)
Also: Add license (MIT).

Change-Id: Ia184b396b648ecb4ef30b40d13618e2ecf72294a
2016-01-10 19:31:07 +01:00

14 lines
515 B
PHP

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