Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92655209
PHUIDiffInlineCommentUndoView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 22, 10:50
Size
698 B
Mime Type
text/x-php
Expires
Sun, Nov 24, 10:50 (2 d)
Engine
blob
Format
Raw Data
Handle
22478393
Attached To
rPH Phabricator
PHUIDiffInlineCommentUndoView.php
View Options
<?php
/**
* Render the "Undo" action to recover discarded inline comments.
*
* This extends @{class:PHUIDiffInlineCommentView} so it can use the same
* scaffolding code as other kinds of inline comments.
*/
final
class
PHUIDiffInlineCommentUndoView
extends
PHUIDiffInlineCommentView
{
public
function
isHideable
()
{
return
false
;
}
public
function
render
()
{
$link
=
javelin_tag
(
'a'
,
array
(
'href'
=>
'#'
,
'sigil'
=>
'differential-inline-comment-undo'
,
),
pht
(
'Undo'
));
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'differential-inline-undo'
,
),
array
(
pht
(
'Changes discarded. '
),
$link
));
}
}
Event Timeline
Log In to Comment