Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4098779
ThreadItemFormatter.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
ThreadItemFormatter.php
View Options
<?php
namespace
MediaWiki\Extension\DiscussionTools
;
use
MediaWiki\Extension\DiscussionTools\ThreadItem\DatabaseThreadItem
;
use
MediaWiki\Linker\LinkRenderer
;
use
MediaWiki\Title\TitleValue
;
use
MessageLocalizer
;
/**
* Displays links to comments and headings represented as ThreadItems.
*/
class
ThreadItemFormatter
{
private
LinkRenderer
$linkRenderer
;
public
function
__construct
(
LinkRenderer
$linkRenderer
)
{
$this
->
linkRenderer
=
$linkRenderer
;
}
/**
* Make a link to a thread item on the page.
*/
public
function
makeLink
(
DatabaseThreadItem
$item
,
?
string
$text
=
null
):
string
{
$title
=
TitleValue
::
newFromPage
(
$item
->
getPage
()
)->
createFragmentTarget
(
$item
->
getId
()
);
$query
=
[];
if
(
!
$item
->
getRevision
()->
isCurrent
()
)
{
$query
[
'oldid'
]
=
$item
->
getRevision
()->
getId
();
}
$link
=
$this
->
linkRenderer
->
makeLink
(
$title
,
$text
,
[],
$query
);
return
$link
;
}
/**
* Make a link to a thread item on the page, with additional information (used on special pages).
*/
public
function
formatLine
(
DatabaseThreadItem
$item
,
MessageLocalizer
$context
):
string
{
$contents
=
[];
$contents
[]
=
$this
->
makeLink
(
$item
);
if
(
!
$item
->
getRevision
()->
isCurrent
()
)
{
$contents
[]
=
$context
->
msg
(
'discussiontools-findcomment-results-notcurrent'
)->
escaped
();
}
if
(
is_string
(
$item
->
getTranscludedFrom
()
)
)
{
$contents
[]
=
$context
->
msg
(
'discussiontools-findcomment-results-transcluded'
)->
escaped
();
}
return
implode
(
$context
->
msg
(
'word-separator'
)->
escaped
(),
$contents
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 15:31 (3 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
26/48/9f20e982ba2a9c0ad0b3f3187cc8
Default Alt Text
ThreadItemFormatter.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment