Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98293577
PhabricatorStandardCustomFieldText.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, Jan 11, 20:35
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 13, 20:35 (2 d)
Engine
blob
Format
Raw Data
Handle
23554434
Attached To
rPH Phabricator
PhabricatorStandardCustomFieldText.php
View Options
<?php
final
class
PhabricatorStandardCustomFieldText
extends
PhabricatorStandardCustomField
{
public
function
getFieldType
()
{
return
'text'
;
}
public
function
buildFieldIndexes
()
{
$indexes
=
array
();
$value
=
$this
->
getFieldValue
();
if
(
strlen
(
$value
))
{
$indexes
[]
=
$this
->
newStringIndex
(
$value
);
}
return
$indexes
;
}
public
function
readApplicationSearchValueFromRequest
(
PhabricatorApplicationSearchEngine
$engine
,
AphrontRequest
$request
)
{
return
$request
->
getStr
(
$this
->
getFieldKey
());
}
public
function
applyApplicationSearchConstraintToQuery
(
PhabricatorApplicationSearchEngine
$engine
,
PhabricatorCursorPagedPolicyAwareQuery
$query
,
$value
)
{
if
(
strlen
(
$value
))
{
$query
->
withApplicationSearchContainsConstraint
(
$this
->
newStringIndex
(
null
),
$value
);
}
}
public
function
appendToApplicationSearchForm
(
PhabricatorApplicationSearchEngine
$engine
,
AphrontFormView
$form
,
$value
)
{
$form
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
$this
->
getFieldName
())
->
setName
(
$this
->
getFieldKey
())
->
setValue
(
$value
));
}
public
function
shouldAppearInHerald
()
{
return
true
;
}
public
function
getHeraldFieldConditions
()
{
return
array
(
HeraldAdapter
::
CONDITION_CONTAINS
,
HeraldAdapter
::
CONDITION_NOT_CONTAINS
,
HeraldAdapter
::
CONDITION_IS
,
HeraldAdapter
::
CONDITION_IS_NOT
,
HeraldAdapter
::
CONDITION_REGEXP
,
);
}
protected
function
getHTTPParameterType
()
{
return
new
AphrontStringHTTPParameterType
();
}
}
Event Timeline
Log In to Comment