Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102497286
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, Feb 21, 08:10
Size
637 B
Mime Type
text/x-php
Expires
Sun, Feb 23, 08:10 (2 d)
Engine
blob
Format
Raw Data
Handle
24332289
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
(
'Changes discarded. '
,
$link
));
}
}
Event Timeline
Log In to Comment