Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97892183
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
Tue, Jan 7, 06:32
Size
610 B
Mime Type
text/x-php
Expires
Thu, Jan 9, 06:32 (2 d)
Engine
blob
Format
Raw Data
Handle
23432406
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