MediaWiki REL1_32
PdfHandler.php
Go to the documentation of this file.
1<?php
2
3if ( function_exists( 'wfLoadExtension' ) ) {
4 wfLoadExtension( 'PdfHandler' );
5 // Keep i18n globals so mergeMessageFileList.php doesn't break
6 $wgMessagesDirs['PdfHandler'] = __DIR__ . '/i18n';
7 /* wfWarn(
8 'Deprecated PHP entry point used for PdfHandler extension. Please use wfLoadExtension instead, ' .
9 'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
10 ); */
11 return true;
12} else {
13 die( 'This version of the PdfHandler extension requires MediaWiki 1.25+' );
14}
wfLoadExtension( $ext, $path=null)
Load an extension.
$wgMessagesDirs['ReplaceText']