Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114205243
PHUIDiffRevealIconView.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
Sat, May 24, 05:56
Size
545 B
Mime Type
text/x-php
Expires
Mon, May 26, 05:56 (2 d)
Engine
blob
Format
Raw Data
Handle
26366346
Attached To
rPH Phabricator
PHUIDiffRevealIconView.php
View Options
<?php
final
class
PHUIDiffRevealIconView
extends
AphrontView
{
public
function
render
()
{
$icon
=
id
(
new
PHUIIconView
())
->
setIcon
(
'fa-comment'
)
->
addSigil
(
'has-tooltip'
)
->
setMetadata
(
array
(
'tip'
=>
pht
(
'Show Hidden Comments'
),
'align'
=>
'E'
,
'size'
=>
275
,
));
return
javelin_tag
(
'a'
,
array
(
'href'
=>
'#'
,
'class'
=>
'reveal-inlines'
,
'sigil'
=>
'reveal-inlines'
,
'mustcapture'
=>
true
,
),
$icon
);
}
}
Event Timeline
Log In to Comment