Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98105697
PhabricatorIconSetEditField.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, Jan 9, 20:33
Size
610 B
Mime Type
text/x-php
Expires
Sat, Jan 11, 20:33 (2 d)
Engine
blob
Format
Raw Data
Handle
23506644
Attached To
rPH Phabricator
PhabricatorIconSetEditField.php
View Options
<?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
Log In to Comment