Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107140898
PhabricatorStandardCustomFieldBool.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, Apr 5, 05:04
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Apr 7, 05:04 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25346891
Attached To
rPH Phabricator
PhabricatorStandardCustomFieldBool.php
View Options
<?php
final
class
PhabricatorStandardCustomFieldBool
extends
PhabricatorStandardCustomField
{
public
function
getFieldType
()
{
return
'bool'
;
}
public
function
buildFieldIndexes
()
{
$indexes
=
array
();
$value
=
$this
->
getFieldValue
();
if
(
strlen
(
$value
))
{
$indexes
[]
=
$this
->
newNumericIndex
((
int
)
$value
);
}
return
$indexes
;
}
public
function
getValueForStorage
()
{
$value
=
$this
->
getFieldValue
();
if
(
strlen
(
$value
))
{
return
(
int
)
$value
;
}
else
{
return
null
;
}
}
public
function
setValueFromStorage
(
$value
)
{
if
(
strlen
(
$value
))
{
$value
=
(
bool
)
$value
;
}
else
{
$value
=
null
;
}
return
$this
->
setFieldValue
(
$value
);
}
public
function
readApplicationSearchValueFromRequest
(
PhabricatorApplicationSearchEngine
$engine
,
AphrontRequest
$request
)
{
return
$request
->
getStr
(
$this
->
getFieldKey
());
}
public
function
applyApplicationSearchConstraintToQuery
(
PhabricatorApplicationSearchEngine
$engine
,
PhabricatorCursorPagedPolicyAwareQuery
$query
,
$value
)
{
if
(
$value
==
'require'
)
{
$query
->
withApplicationSearchContainsConstraint
(
$this
->
newNumericIndex
(
null
),
1
);
}
}
public
function
appendToApplicationSearchForm
(
PhabricatorApplicationSearchEngine
$engine
,
AphrontFormView
$form
,
$value
,
array
$handles
)
{
$form
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
$this
->
getFieldName
())
->
setName
(
$this
->
getFieldKey
())
->
setValue
(
$value
)
->
setOptions
(
array
(
''
=>
$this
->
getString
(
'search.default'
,
pht
(
'(Any)'
)),
'require'
=>
$this
->
getString
(
'search.require'
,
pht
(
'Require'
)),
)));
}
public
function
renderEditControl
()
{
return
id
(
new
AphrontFormCheckboxControl
())
->
setLabel
(
$this
->
getFieldName
())
->
addCheckbox
(
$this
->
getFieldKey
(),
1
,
$this
->
getString
(
'edit.checkbox'
),
(
bool
)
$this
->
getFieldValue
());
}
public
function
renderPropertyViewValue
()
{
$value
=
$this
->
getFieldValue
();
if
(
$value
)
{
return
$this
->
getString
(
'view.yes'
,
pht
(
'Yes'
));
}
else
{
return
null
;
}
}
}
Event Timeline
Log In to Comment