Difference between revisions 607214 and 607816 on mediawikiwiki__TOC__ ==TopTenPages.php== <syntaxhighlight lang="php"> <?php # To install the extension, add to your LocalSettings.php: # require_once("$IP/extensions/TopTenPages.php"); /* Syntax: <TopTenPages/> <TopTenPages>5</TopTenPages> <TopTenPages offset="1"/> {{Special:TopTenPages}} {{Special:TopTenPages/-/5}} {{Special:TopTenPages/1/5}} */ $wgExtensionCredits['specialpage'][] = array( 'name' => 'TopTenPages', 'version' => '0.3.1', 'author' => array( 'Timo Tijhof', 'Sascha', ), 'url' => 'https://www.mediawiki.org/wiki/Extension:TopTenPages', 'description' => 'Shows most viewed pages.', ); $wgAutoloadClasses['SpecialTopTenPages'] = __DIR__ . '/SpecialTopTenPages.php'; $wgSpecialPages['TopTenPages'] = 'SpecialTopTenPages'; $wgSpecialPageGroups['TopTenPages'] = 'other'; $wgExtensionFunctions[] = 'efTopTenPages'; function efTopTenPages() { global $wgParser; $wgParser->setHook( 'TopTenPages', 'efTopTenPagesRender' ); } /** * The callback function for converting the input text to HTML output. */ function efTopTenPagesRender( $text, array $args, Parser $parser, PPFrame $frame ) { if (array_key_exists('offset', $args)) { $offset = (int) $args['offset']; } else { $offset = 0; } if ($text > 0){ $limit = (int) $text; } else { $limit = 10; } return $parser->recursiveTagParse( "{{Special:TopTenPages/$offset/$limit}}", $frame ); } </syntaxhighlight> ==SpecialTopTenPage.php== <syntaxhighlight lang="php"> <?php class SpecialTopTenPages extends PopularPagesPage { public function __construct( $name = 'TopTenPages' ) { parent::__construct( $name ); $inc = $this->including(); } public function isIncludable() { return true; } function isListed() { return false; } function execute( $par ) { $inc = $this->including(); if ( $inc ) { $parts = explode( '/', $par, 3 ); $this->offset = (int)$parts[0]; $this->limit = (int)$parts[1]; } $this->setListoutput( false ); $this->shownavigation = !$inc; parent::execute( $par ); } } ?</syntaxhighlight> All content in the above text box is licensed under the Creative Commons Attribution-ShareAlike license Version 4 and was originally sourced from https://mediawiki.org/w/index.php?diff=prev&oldid=607816.
![]() ![]() This site is not affiliated with or endorsed in any way by the Wikimedia Foundation or any of its affiliates. In fact, we fucking despise them.
|