Page MenuHomePhorge

PhabricatorIconSetIcon.php
No OneTemporary

Size
815 B
Referenced Files
None
Subscribers
None

PhabricatorIconSetIcon.php

<?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;
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, May 12, 1:49 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
105982
Default Alt Text
PhabricatorIconSetIcon.php (815 B)

Event Timeline