Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118157059
PhabricatorHeaderView.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, Jun 18, 03:23
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jun 20, 03:23 (2 d)
Engine
blob
Format
Raw Data
Handle
26847813
Attached To
rPH Phabricator
PhabricatorHeaderView.php
View Options
<?php
final
class
PhabricatorHeaderView
extends
AphrontView
{
private
$objectName
;
private
$header
;
private
$tags
=
array
();
private
$image
;
private
$subheader
;
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
setImage
(
$uri
)
{
$this
->
image
=
$uri
;
return
$this
;
}
public
function
setSubheader
(
$subheader
)
{
$this
->
subheader
=
$subheader
;
return
$this
;
}
public
function
render
()
{
require_celerity_resource
(
'phabricator-header-view-css'
);
$image
=
null
;
if
(
$this
->
image
)
{
$image
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'phabricator-header-image'
,
'style'
=>
'background-image: url('
.
$this
->
image
.
')'
,
),
''
);
}
$header
=
array
();
$header
[]
=
$this
->
header
;
if
(
$this
->
objectName
)
{
array_unshift
(
$header
,
phutil_tag
(
'a'
,
array
(
'href'
=>
'/'
.
$this
->
objectName
,
),
$this
->
objectName
),
' '
);
}
if
(
$this
->
tags
)
{
$header
[]
=
' '
;
$header
[]
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'phabricator-header-tags'
,
),
array_interleave
(
' '
,
$this
->
tags
));
}
if
(
$this
->
subheader
)
{
$header
[]
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-header-subheader'
,
),
$this
->
subheader
);
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-header-shell'
,
),
array
(
$image
,
phutil_tag
(
'h1'
,
array
(
'class'
=>
'phabricator-header-view'
,
),
$header
),
));
}
}
Event Timeline
Log In to Comment