Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121787931
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
Sun, Jul 13, 21:58
Size
642 B
Mime Type
text/x-php
Expires
Tue, Jul 15, 21:58 (2 d)
Engine
blob
Format
Raw Data
Handle
27359754
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
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