mediawiki-extensions-Cookie.../CookieWarning.php
Fomafix bd03779c92 Start showing warning for deprecated PHP entry point
Change-Id: Idb9ab6f88dfa2daa9020a4ebfc2bf061ce600ec7
2018-08-24 18:06:38 +00:00

14 lines
509 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.32+' );
}