Page MenuHomePhorge

PHUIDiffInlineCommentUndoView.php
No OneTemporary

Size
642 B
Referenced Files
None
Subscribers
None

PHUIDiffInlineCommentUndoView.php

<?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));
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Jun 17, 1:28 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
223775
Default Alt Text
PHUIDiffInlineCommentUndoView.php (642 B)

Event Timeline