Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120300756
PhabricatorAnchorView.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, Jul 3, 09:50
Size
937 B
Mime Type
text/x-php
Expires
Sat, Jul 5, 09:50 (2 d)
Engine
blob
Format
Raw Data
Handle
27154078
Attached To
rPH Phabricator
PhabricatorAnchorView.php
View Options
<?php
final
class
PhabricatorAnchorView
extends
AphrontView
{
private
$anchorName
;
private
$navigationMarker
;
public
function
setAnchorName
(
$name
)
{
$this
->
anchorName
=
$name
;
return
$this
;
}
public
function
setNavigationMarker
(
$marker
)
{
$this
->
navigationMarker
=
$marker
;
return
$this
;
}
public
function
render
()
{
$marker
=
null
;
if
(
$this
->
navigationMarker
)
{
$marker
=
javelin_tag
(
'legend'
,
array
(
'class'
=>
'phabricator-anchor-navigation-marker'
,
'sigil'
=>
'marker'
,
'meta'
=>
array
(
'anchor'
=>
$this
->
anchorName
,
),
),
''
);
}
$anchor
=
phutil_tag
(
'a'
,
array
(
'name'
=>
$this
->
anchorName
,
'id'
=>
$this
->
anchorName
,
'class'
=>
'phabricator-anchor-view'
,
),
''
);
return
$this
->
renderSingleView
(
array
(
$marker
,
$anchor
));
}
}
Event Timeline
Log In to Comment