Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F548526
PhabricatorChartFunctionLabel.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
PhabricatorChartFunctionLabel.php
View Options
<?php
final
class
PhabricatorChartFunctionLabel
extends
Phobject
{
private
$key
;
private
$name
;
private
$color
;
private
$icon
;
private
$fillColor
;
public
function
setKey
(
$key
)
{
$this
->
key
=
$key
;
return
$this
;
}
public
function
getKey
()
{
return
$this
->
key
;
}
public
function
setName
(
$name
)
{
$this
->
name
=
$name
;
return
$this
;
}
public
function
getName
()
{
return
$this
->
name
;
}
public
function
setColor
(
$color
)
{
$this
->
color
=
$color
;
return
$this
;
}
public
function
getColor
()
{
return
$this
->
color
;
}
public
function
setIcon
(
$icon
)
{
$this
->
icon
=
$icon
;
return
$this
;
}
public
function
getIcon
()
{
return
$this
->
icon
;
}
public
function
setFillColor
(
$fill_color
)
{
$this
->
fillColor
=
$fill_color
;
return
$this
;
}
public
function
getFillColor
()
{
return
$this
->
fillColor
;
}
public
function
toWireFormat
()
{
return
array
(
'key'
=>
$this
->
getKey
(),
'name'
=>
$this
->
getName
(),
'color'
=>
$this
->
getColor
(),
'icon'
=>
$this
->
getIcon
(),
'fillColor'
=>
$this
->
getFillColor
(),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:50 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
123023
Default Alt Text
PhabricatorChartFunctionLabel.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment