Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104792712
PhabricatorCrumbView.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
Wed, Mar 12, 10:36
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Mar 14, 10:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24855165
Attached To
rPH Phabricator
PhabricatorCrumbView.php
View Options
<?php
final
class
PhabricatorCrumbView
extends
AphrontView
{
private
$name
;
private
$href
;
private
$icon
;
private
$isLastCrumb
;
public
function
setName
(
$name
)
{
$this
->
name
=
$name
;
return
$this
;
}
public
function
setHref
(
$href
)
{
$this
->
href
=
$href
;
return
$this
;
}
public
function
setIcon
(
$icon
)
{
$this
->
icon
=
$icon
;
return
$this
;
}
protected
function
canAppendChild
()
{
return
false
;
}
public
function
setIsLastCrumb
(
$is_last_crumb
)
{
$this
->
isLastCrumb
=
$is_last_crumb
;
return
$this
;
}
public
function
render
()
{
$classes
=
array
(
'phabricator-crumb-view'
,
);
$icon
=
null
;
if
(
$this
->
icon
)
{
$classes
[]
=
'phabricator-crumb-has-icon'
;
$icon
=
phutil_render_tag
(
'span'
,
array
(
'class'
=>
'phabricator-crumb-icon '
.
'sprite-apps-large app-'
.
$this
->
icon
.
'-dark-large'
,
),
''
);
}
$name
=
phutil_render_tag
(
'span'
,
array
(
'class'
=>
'phabricator-crumb-name'
,
),
phutil_escape_html
(
$this
->
name
));
$divider
=
null
;
if
(!
$this
->
isLastCrumb
)
{
$divider
=
phutil_render_tag
(
'span'
,
array
(
'class'
=>
'sprite-menu phabricator-crumb-divider'
,
),
''
);
}
return
phutil_render_tag
(
$this
->
href
?
'a'
:
'span'
,
array
(
'href'
=>
$this
->
href
,
'class'
=>
implode
(
' '
,
$classes
),
),
$icon
.
$name
.
$divider
);
}
}
Event Timeline
Log In to Comment