Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97579934
PhabricatorActionHeaderView.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
Sun, Jan 5, 10:34
Size
3 KB
Mime Type
text/x-php
Expires
Tue, Jan 7, 10:34 (2 d)
Engine
blob
Format
Raw Data
Handle
23430458
Attached To
rPH Phabricator
PhabricatorActionHeaderView.php
View Options
<?php
final
class
PhabricatorActionHeaderView
extends
AphrontView
{
const
ICON_GREY
=
'grey'
;
const
ICON_WHITE
=
'white'
;
const
HEADER_GREY
=
'grey'
;
const
HEADER_DARK_GREY
=
'dark-grey'
;
const
HEADER_BLUE
=
'blue'
;
const
HEADER_GREEN
=
'green'
;
const
HEADER_RED
=
'red'
;
const
HEADER_YELLOW
=
'yellow'
;
private
$headerTitle
;
private
$headerHref
;
private
$headerIcon
;
private
$headerSigils
=
array
();
private
$actions
=
array
();
private
$iconColor
=
PhabricatorActionHeaderView
::
ICON_GREY
;
private
$headerColor
;
private
$dropdown
;
public
function
setDropdown
(
$dropdown
)
{
$this
->
dropdown
=
$dropdown
;
return
$this
;
}
public
function
addAction
(
PHUIIconView
$action
)
{
$this
->
actions
[]
=
$action
;
return
$this
;
}
public
function
setTag
(
PhabricatorTagView
$tag
)
{
$this
->
actions
[]
=
$tag
;
return
$this
;
}
public
function
setHeaderTitle
(
$header
)
{
$this
->
headerTitle
=
$header
;
return
$this
;
}
public
function
setHeaderHref
(
$href
)
{
$this
->
headerHref
=
$href
;
return
$this
;
}
public
function
addHeaderSigil
(
$sigil
)
{
$this
->
headerSigils
[]
=
$sigil
;
return
$this
;
}
public
function
setHeaderIcon
(
$minicon
)
{
$this
->
headerIcon
=
$minicon
;
return
$this
;
}
public
function
setIconColor
(
$color
)
{
$this
->
iconColor
=
$color
;
return
$this
;
}
public
function
setHeaderColor
(
$color
)
{
$this
->
headerColor
=
$color
;
return
$this
;
}
public
function
render
()
{
require_celerity_resource
(
'phabricator-action-header-view-css'
);
$classes
=
array
();
$classes
[]
=
'phabricator-action-header'
;
if
(
$this
->
headerColor
)
{
$classes
[]
=
'sprite-gradient'
;
$classes
[]
=
'gradient-'
.
$this
->
headerColor
.
'-header'
;
}
if
(
$this
->
dropdown
)
{
$classes
[]
=
'dropdown'
;
}
$action_list
=
array
();
foreach
(
$this
->
actions
as
$action
)
{
$action_list
[]
=
phutil_tag
(
'li'
,
array
(
'class'
=>
'phabricator-action-header-icon-item'
),
$action
);
}
$header_icon
=
''
;
if
(
$this
->
headerIcon
)
{
require_celerity_resource
(
'sprite-minicons-css'
);
$header_icon
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'sprite-minicons minicons-'
.
$this
->
headerIcon
),
''
);
}
$header_title
=
$this
->
headerTitle
;
if
(
$this
->
headerHref
)
{
$header_title
=
javelin_tag
(
'a'
,
array
(
'class'
=>
'phabricator-action-header-link'
,
'href'
=>
$this
->
headerHref
,
'sigil'
=>
implode
(
' '
,
$this
->
headerSigils
)
),
$this
->
headerTitle
);
}
$header
=
phutil_tag
(
'h3'
,
array
(
'class'
=>
'phabricator-action-header-title'
),
array
(
$header_icon
,
$header_title
));
$icons
=
''
;
if
(!
empty
(
$action_list
))
{
$classes
[]
=
'phabricator-action-header-icon-'
.
$this
->
iconColor
;
$icons
=
phutil_tag
(
'ul'
,
array
(
'class'
=>
'phabricator-action-header-icon-list'
),
$action_list
);
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
implode
(
' '
,
$classes
)
),
array
(
$header
,
$icons
));
}
}
Event Timeline
Log In to Comment