MediaWiki  1.34.0
SpecialLongPages.php
Go to the documentation of this file.
1 <?php
29  function __construct( $name = 'Longpages' ) {
30  parent::__construct( $name );
31  }
32 
33  function sortDescending() {
34  return true;
35  }
36 
37  protected function getGroupName() {
38  return 'maintenance';
39  }
40 }
SpecialLongPages\sortDescending
sortDescending()
Override to sort by increasing values.
Definition: SpecialLongPages.php:33
SpecialLongPages\getGroupName
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Definition: SpecialLongPages.php:37
SpecialLongPages
Definition: SpecialLongPages.php:28
SpecialShortPages
SpecialShortpages extends QueryPage.
Definition: SpecialShortPages.php:34
SpecialLongPages\__construct
__construct( $name='Longpages')
Definition: SpecialLongPages.php:29