Merge "OOUIfy CheckMatrix in PHP and JS"
[lhc/web/wiklou.git] / includes / specials / SpecialAncientpages.php
1 <?php
2 /**
3 * Implements Special:Ancientpages
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 use MediaWiki\MediaWikiServices;
25
26 /**
27 * Implements Special:Ancientpages
28 *
29 * @ingroup SpecialPage
30 */
31 class AncientPagesPage extends QueryPage {
32
33 function __construct( $name = 'Ancientpages' ) {
34 parent::__construct( $name );
35 }
36
37 public function isExpensive() {
38 return true;
39 }
40
41 function isSyndicated() {
42 return false;
43 }
44
45 public function getQueryInfo() {
46 return [
47 'tables' => [ 'page', 'revision' ],
48 'fields' => [
49 'namespace' => 'page_namespace',
50 'title' => 'page_title',
51 'value' => 'rev_timestamp'
52 ],
53 'conds' => [
54 'page_namespace' => MWNamespace::getContentNamespaces(),
55 'page_is_redirect' => 0,
56 'page_latest=rev_id'
57 ]
58 ];
59 }
60
61 public function usesTimestamps() {
62 return true;
63 }
64
65 function sortDescending() {
66 return false;
67 }
68
69 public function preprocessResults( $db, $res ) {
70 $this->executeLBFromResultWrapper( $res );
71 }
72
73 /**
74 * @param Skin $skin
75 * @param object $result Result row
76 * @return string
77 */
78 function formatResult( $skin, $result ) {
79 $d = $this->getLanguage()->userTimeAndDate( $result->value, $this->getUser() );
80 $title = Title::makeTitle( $result->namespace, $result->title );
81 $linkRenderer = $this->getLinkRenderer();
82 $link = $linkRenderer->makeKnownLink(
83 $title,
84 MediaWikiServices::getInstance()->getContentLanguage()->
85 convert( $title->getPrefixedText() )
86 );
87
88 return $this->getLanguage()->specialList( $link, htmlspecialchars( $d ) );
89 }
90
91 protected function getGroupName() {
92 return 'maintenance';
93 }
94 }