Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101182287
PhabricatorIconSetIcon.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
Thu, Feb 6, 13:35
Size
612 B
Mime Type
text/x-php
Expires
Sat, Feb 8, 13:35 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24108483
Attached To
rPH Phabricator
PhabricatorIconSetIcon.php
View Options
<?php
final
class
PhabricatorIconSetIcon
extends
Phobject
{
private
$key
;
private
$icon
;
private
$label
;
public
function
setKey
(
$key
)
{
$this
->
key
=
$key
;
return
$this
;
}
public
function
getKey
()
{
return
$this
->
key
;
}
public
function
setIcon
(
$icon
)
{
$this
->
icon
=
$icon
;
return
$this
;
}
public
function
getIcon
()
{
if
(
$this
->
icon
===
null
)
{
return
$this
->
getKey
();
}
return
$this
->
icon
;
}
public
function
setLabel
(
$label
)
{
$this
->
label
=
$label
;
return
$this
;
}
public
function
getLabel
()
{
return
$this
->
label
;
}
}
Event Timeline
Log In to Comment