Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92717954
PhabricatorSearchStringListField.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
Sat, Nov 23, 02:21
Size
461 B
Mime Type
text/x-php
Expires
Mon, Nov 25, 02:21 (2 d)
Engine
blob
Format
Raw Data
Handle
22495506
Attached To
rPH Phabricator
PhabricatorSearchStringListField.php
View Options
<?php
final
class
PhabricatorSearchStringListField
extends
PhabricatorSearchField
{
protected
function
getDefaultValue
()
{
return
array
();
}
protected
function
getValueFromRequest
(
AphrontRequest
$request
,
$key
)
{
return
$request
->
getStrList
(
$key
);
}
protected
function
newControl
()
{
return
new
AphrontFormTextControl
();
}
protected
function
getValueForControl
()
{
return
implode
(
', '
,
parent
::
getValueForControl
());
}
}
Event Timeline
Log In to Comment