Page MenuHomec4science

PhabricatorIconSetEditField.php
No OneTemporary

File Metadata

Created
Wed, Jul 17, 01:33

PhabricatorIconSetEditField.php

<?php
final class PhabricatorIconSetEditField
extends PhabricatorEditField {
private $iconSet;
public function setIconSet(PhabricatorIconSet $icon_set) {
$this->iconSet = $icon_set;
return $this;
}
public function getIconSet() {
return $this->iconSet;
}
protected function newControl() {
return id(new PHUIFormIconSetControl())
->setIconSet($this->getIconSet());
}
protected function newConduitParameterType() {
return new ConduitStringParameterType();
}
protected function newHTTPParameterType() {
return new AphrontStringHTTPParameterType();
}
}

Event Timeline