Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F557214
PhabricatorSearchDateControlField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorSearchDateControlField.php
View Options
<?php
final
class
PhabricatorSearchDateControlField
extends
PhabricatorSearchField
{
protected
function
getValueExistsInRequest
(
AphrontRequest
$request
,
$key
)
{
// The control doesn't actually submit a value with the same name as the
// key, so look for the "_d" value instead, which has the date part of the
// control value.
return
$request
->
getExists
(
$key
.
'_d'
);
}
protected
function
getValueFromRequest
(
AphrontRequest
$request
,
$key
)
{
$value
=
AphrontFormDateControlValue
::
newFromRequest
(
$request
,
$key
);
$value
->
setOptional
(
true
);
return
$value
->
getDictionary
();
}
protected
function
newControl
()
{
return
id
(
new
AphrontFormDateControl
())
->
setAllowNull
(
true
);
}
protected
function
didReadValueFromSavedQuery
(
$value
)
{
if
(!
$value
)
{
return
null
;
}
if
(
$value
instanceof
AphrontFormDateControlValue
&&
$value
->
getEpoch
())
{
return
$value
->
setOptional
(
true
);
}
$value
=
AphrontFormDateControlValue
::
newFromWild
(
$this
->
getViewer
(),
$value
);
return
$value
->
setOptional
(
true
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 7:57 PM (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
113767
Default Alt Text
PhabricatorSearchDateControlField.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment