Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107177835
PhabricatorContentSourceView.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, Apr 5, 16:48
Size
868 B
Mime Type
text/x-php
Expires
Mon, Apr 7, 16:48 (2 d)
Engine
blob
Format
Raw Data
Handle
25336438
Attached To
rPH Phabricator
PhabricatorContentSourceView.php
View Options
<?php
final
class
PhabricatorContentSourceView
extends
AphrontView
{
private
$contentSource
;
public
function
setContentSource
(
PhabricatorContentSource
$content_source
)
{
$this
->
contentSource
=
$content_source
;
return
$this
;
}
public
function
getSourceName
()
{
$map
=
PhabricatorContentSource
::
getSourceNameMap
();
$source
=
$this
->
contentSource
->
getSource
();
return
idx
(
$map
,
$source
,
null
);
}
public
function
render
()
{
require_celerity_resource
(
'phabricator-content-source-view-css'
);
$map
=
PhabricatorContentSource
::
getSourceNameMap
();
$source
=
$this
->
contentSource
->
getSource
();
$type
=
idx
(
$map
,
$source
,
null
);
if
(!
$type
)
{
return
null
;
}
return
phutil_tag
(
'span'
,
array
(
'class'
=>
'phabricator-content-source-view'
,
),
pht
(
'Via %s'
,
$type
));
}
}
Event Timeline
Log In to Comment