Difference between revisions 607816 and 610198 on mediawikiwiki__TOC__ ==TopTenPages.php== <syntaxhighlight lang="php"> <?php # To install the extension, add to your LocalSettings.php: # require_once("$IP/extensions/TopTenPages.php"); (contracted; show full) } else { $limit = 10; } return $parser->recursiveTagParse( "{{Special:TopTenPages/$offset/$limit}}", $frame ); } </syntaxhighlight> ==SpecialTopTenPage s.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=610198.
![]() ![]() 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.
|