Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93432369
PhabricatorXHProfProfileView.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
Thu, Nov 28, 17:29
Size
542 B
Mime Type
text/x-php
Expires
Sat, Nov 30, 17:29 (2 d)
Engine
blob
Format
Raw Data
Handle
22587712
Attached To
rPH Phabricator
PhabricatorXHProfProfileView.php
View Options
<?php
abstract
class
PhabricatorXHProfProfileView
extends
AphrontView
{
private
$baseURI
;
private
$isFramed
;
public
function
setIsFramed
(
$is_framed
)
{
$this
->
isFramed
=
$is_framed
;
return
$this
;
}
public
function
setBaseURI
(
$uri
)
{
$this
->
baseURI
=
$uri
;
return
$this
;
}
protected
function
renderSymbolLink
(
$symbol
)
{
return
phutil_tag
(
'a'
,
array
(
'href'
=>
$this
->
baseURI
.
'?symbol='
.
$symbol
,
'target'
=>
$this
->
isFramed
?
'_top'
:
null
,
),
$symbol
);
}
}
Event Timeline
Log In to Comment