3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
19 * @ingroup RevisionDelete
23 * Item class for a archive table row
25 class RevDelArchiveItem
extends RevDelRevisionItem
{
26 public function __construct( $list, $row ) {
27 RevDelItem
::__construct( $list, $row );
28 $this->revision
= Revision
::newFromArchiveRow( $row,
29 [ 'page' => $this->list->title
->getArticleID() ] );
32 public function getIdField() {
33 return 'ar_timestamp';
36 public function getTimestampField() {
37 return 'ar_timestamp';
40 public function getAuthorIdField() {
44 public function getAuthorNameField() {
45 return 'ar_user_text';
48 public function getId() {
49 # Convert DB timestamp to MW timestamp
50 return $this->revision
->getTimestamp();
53 public function setBits( $bits ) {
54 $dbw = wfGetDB( DB_MASTER
);
55 $dbw->update( 'archive',
56 [ 'ar_deleted' => $bits ],
58 'ar_namespace' => $this->list->title
->getNamespace(),
59 'ar_title' => $this->list->title
->getDBkey(),
60 // use timestamp for index
61 'ar_timestamp' => $this->row
->ar_timestamp
,
62 'ar_rev_id' => $this->row
->ar_rev_id
,
63 'ar_deleted' => $this->getBits()
67 return (bool)$dbw->affectedRows();
70 protected function getRevisionLink() {
71 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
72 $this->revision
->getTimestamp(), $this->list->getUser() ) );
74 if ( $this->isDeleted() && !$this->canViewContent() ) {
79 SpecialPage
::getTitleFor( 'Undelete' ),
83 'target' => $this->list->title
->getPrefixedText(),
84 'timestamp' => $this->revision
->getTimestamp()
89 protected function getDiffLink() {
90 if ( $this->isDeleted() && !$this->canViewContent() ) {
91 return $this->list->msg( 'diff' )->escaped();
95 SpecialPage
::getTitleFor( 'Undelete' ),
96 $this->list->msg( 'diff' )->escaped(),
99 'target' => $this->list->title
->getPrefixedText(),
101 'timestamp' => $this->revision
->getTimestamp()