1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
use MediaWiki\Html\Html;
use MediaWiki\MediaWikiServices;
use MediaWiki\RevisionList\RevisionItemBase;
use MediaWiki\SpecialPage\SpecialPage;
use MediaWiki\Title\Title;
/**
* Item class for a logging table row with its associated change tags.
*
* @todo Abstract out a base class for this and RevDelLogItem, similar to the
* RevisionItem class but specifically for log items.
*
* @since 1.25
* @ingroup ChangeTags
*/
class ChangeTagsLogItem extends RevisionItemBase {
public function getIdField() {
return 'log_id';
}
public function getTimestampField() {
return 'log_timestamp';
}
public function getAuthorIdField() {
return 'log_user';
}
public function getAuthorNameField() {
return 'log_user_text';
}
public function getAuthorActorField() {
return 'log_actor';
}
public function canView() {
return LogEventsList::userCan(
$this->row, LogPage::DELETED_RESTRICTED, $this->list->getAuthority()
);
}
public function canViewContent() {
return true; // none
}
/**
* @return string Comma-separated list of tags
*/
public function getTags() {
return $this->row->ts_tags;
}
/**
* @return string A HTML <li> element representing this revision, showing
* change tags and everything
*/
public function getHTML() {
$date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
$this->row->log_timestamp, $this->list->getUser() ) );
$title = Title::makeTitle( $this->row->log_namespace, $this->row->log_title );
$services = MediaWikiServices::getInstance();
$formatter = $services->getLogFormatterFactory()->newFromRow( $this->row );
$formatter->setContext( $this->list->getContext() );
$formatter->setAudience( LogFormatter::FOR_THIS_USER );
// Log link for this page
$loglink = $services->getLinkRenderer()->makeLink(
SpecialPage::getTitleFor( 'Log' ),
$this->list->msg( 'log' )->text(),
[],
[ 'page' => $title->getPrefixedText() ]
);
$loglink = $this->list->msg( 'parentheses' )->rawParams( $loglink )->escaped();
// User links and action text
$action = $formatter->getActionText();
$dir = $this->list->getLanguage()->getDir();
$comment = Html::rawElement( 'bdi', [ 'dir' => $dir ], $formatter->getComment() );
$content = "$loglink $date $action $comment";
$attribs = [];
$tags = $this->getTags();
if ( $tags ) {
[ $tagSummary, $classes ] = ChangeTags::formatSummaryRow(
$tags,
'edittags',
$this->list->getContext()
);
$content .= " $tagSummary";
$attribs['class'] = implode( ' ', $classes );
}
return Html::rawElement( 'li', $attribs, $content );
}
}
|