Your IP : 172.70.80.239


Current Path : /var/www/element/data/www/wiki.element.ru/maintenance/
Upload File :
Current File : /var/www/element/data/www/wiki.element.ru/maintenance/parserTestsParserHook.php

<?php
if ( ! defined( 'MEDIAWIKI' ) )
	die( -1 );
/**
 * A basic extension that's used by the parser tests to test whether input and
 * arguments are passed to extensions properly.
 *
 * @file
 * @ingroup Maintenance
 *
 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
 * @copyright Copyright © 2005, 2006 Ævar Arnfjörð Bjarmason
 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
 */

$wgHooks['ParserTestParser'][] = 'wfParserTestParserHookSetup';

function wfParserTestParserHookSetup( &$parser ) {
	$parser->setHook( 'tag', 'wfParserTestParserHookHook' );

	return true;
}

function wfParserTestParserHookHook( $in, $argv ) {
	ob_start();
	var_dump(
		$in,
		$argv
	);
	$ret = ob_get_clean();

	return "<pre>\n$ret</pre>";
}