MediaWiki  REL1_22
SpecialLongpages.php
Go to the documentation of this file.
00001 <?php
00028 class LongPagesPage extends ShortPagesPage {
00029     function __construct( $name = 'Longpages' ) {
00030         parent::__construct( $name );
00031     }
00032 
00033     function sortDescending() {
00034         return true;
00035     }
00036 
00037     protected function getGroupName() {
00038         return 'maintenance';
00039     }
00040 }