Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1429641
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
Sat, May 16, 17:51 (8 h, 55 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
1b/f2/c45b6f1aaa0cbd011c37c959bcd3
Default Alt Text
ThreadItemFormatter.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment