00001 <?php 00011 class LongPagesPage extends ShortPagesPage { 00012 00013 function getName() { 00014 return "Longpages"; 00015 } 00016 00017 function sortDescending() { 00018 return true; 00019 } 00020 } 00021 00025 function wfSpecialLongpages() { 00026 list( $limit, $offset ) = wfCheckLimits(); 00027 00028 $lpp = new LongPagesPage(); 00029 00030 $lpp->doQuery( $offset, $limit ); 00031 }