Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1426455
ChangeTagsLogItem.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
ChangeTagsLogItem.php
View Options
<?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
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 13:14 (1 d, 17 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
28/1d/8ca78cd06b0abef37edd713d5297
Default Alt Text
ChangeTagsLogItem.php (3 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment