fanwikis-Description2/Description2.php
Sam Wilson 74dfa5fdd9 Add composer for CI, and fix CS errors
Also move class to its own namespace.

Bug: T183532
Change-Id: I5a89efd3f162d73e247543c86967562a949a3bf4
2017-12-22 08:01:33 +00:00

26 lines
912 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Description2 Adds meaningful description <meta> tag to MW pages and into the parser output
*
* @file
* @ingroup Extensions
* @author Daniel Friesen (http://danf.ca/mw/)
* @copyright Copyright 2010 Daniel Friesen
* @license https://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
* @link https://www.mediawiki.org/wiki/Extension:Description2 Documentation
*/
if ( function_exists( 'wfLoadExtension' ) ) {
wfLoadExtension( 'Description2' );
// Keep i18n globals so mergeMessageFileList.php doesn't break
$wgMessagesDirs['Description2'] = __DIR__ . '/i18n';
wfWarn(
'Deprecated PHP entry point used for Description2 extension. ' .
'Please use wfLoadExtension instead, ' .
'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
);
return;
} else {
die( 'This version of the Description2 extension requires MediaWiki 1.25+' );
}