Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109862946
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
Wed, Apr 23, 17:22
Size
815 B
Mime Type
text/x-php
Expires
Fri, Apr 25, 17:22 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25701274
Attached To
rPH Phabricator
PhabricatorIconSetIcon.php
View Options
<?php
final
class
PhabricatorIconSetIcon
extends
Phobject
{
private
$key
;
private
$icon
;
private
$label
;
private
$isDisabled
;
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
setIsDisabled
(
$is_disabled
)
{
$this
->
isDisabled
=
$is_disabled
;
return
$this
;
}
public
function
getIsDisabled
()
{
return
$this
->
isDisabled
;
}
public
function
setLabel
(
$label
)
{
$this
->
label
=
$label
;
return
$this
;
}
public
function
getLabel
()
{
return
$this
->
label
;
}
}
Event Timeline
Log In to Comment