Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F955866
PhabricatorHeaderView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorHeaderView.php
View Options
<?php
final
class
PhabricatorHeaderView
extends
AphrontView
{
private
$objectName
;
private
$header
;
private
$tags
=
array
();
public
function
setHeader
(
$header
)
{
$this
->
header
=
$header
;
return
$this
;
}
public
function
setObjectName
(
$object_name
)
{
$this
->
objectName
=
$object_name
;
return
$this
;
}
public
function
addTag
(
PhabricatorTagView
$tag
)
{
$this
->
tags
[]
=
$tag
;
return
$this
;
}
public
function
render
()
{
require_celerity_resource
(
'phabricator-header-view-css'
);
$header
=
array
(
$this
->
header
);
if
(
$this
->
objectName
)
{
array_unshift
(
$header
,
phutil_tag
(
'a'
,
array
(
'href'
=>
'/'
.
$this
->
objectName
,
),
$this
->
objectName
),
' '
);
}
if
(
$this
->
tags
)
{
$header
[]
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'phabricator-header-tags'
,
),
$this
->
renderSingleView
(
$this
->
tags
));
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-header-shell'
,
),
phutil_tag
(
'h1'
,
array
(
'class'
=>
'phabricator-header-view'
,
),
$header
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 5:21 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
227144
Default Alt Text
PhabricatorHeaderView.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment