Use Doxygen @addtogroup instead of phpdoc @package && @subpackage
[lhc/web/wiklou.git] / includes / SpecialLongpages.php
1 <?php
2 /**
3 *
4 * @addtogroup SpecialPage
5 */
6
7 /**
8 *
9 * @addtogroup SpecialPage
10 */
11 class LongPagesPage extends ShortPagesPage {
12
13 function getName() {
14 return "Longpages";
15 }
16
17 function sortDescending() {
18 return true;
19 }
20 }
21
22 /**
23 * constructor
24 */
25 function wfSpecialLongpages()
26 {
27 list( $limit, $offset ) = wfCheckLimits();
28
29 $lpp = new LongPagesPage();
30
31 $lpp->doQuery( $offset, $limit );
32 }
33
34 ?>