Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101942925
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
Sat, Feb 15, 10:25
Size
542 B
Mime Type
text/x-php
Expires
Mon, Feb 17, 10:25 (2 d)
Engine
blob
Format
Raw Data
Handle
24250122
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