Page MenuHomePhorge

PhabricatorChartFunctionLabel.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

PhabricatorChartFunctionLabel.php

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

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)

Event Timeline