Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F568323
PhabricatorSearchCheckboxesField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorSearchCheckboxesField.php
View Options
<?php
final
class
PhabricatorSearchCheckboxesField
extends
PhabricatorSearchField
{
private
$options
;
private
$deprecatedOptions
=
array
();
public
function
setOptions
(
array
$options
)
{
$this
->
options
=
$options
;
return
$this
;
}
public
function
getOptions
()
{
return
$this
->
options
;
}
public
function
setDeprecatedOptions
(
array
$deprecated_options
)
{
$this
->
deprecatedOptions
=
$deprecated_options
;
return
$this
;
}
public
function
getDeprecatedOptions
()
{
return
$this
->
deprecatedOptions
;
}
protected
function
getDefaultValue
()
{
return
array
();
}
protected
function
didReadValueFromSavedQuery
(
$value
)
{
if
(!
is_array
(
$value
))
{
return
array
();
}
return
$this
->
getCanonicalValue
(
$value
);
}
protected
function
getValueFromRequest
(
AphrontRequest
$request
,
$key
)
{
$value
=
$this
->
getListFromRequest
(
$request
,
$key
);
return
$this
->
getCanonicalValue
(
$value
);
}
protected
function
newControl
()
{
$value
=
array_fuse
(
$this
->
getValue
());
$control
=
new
AphrontFormCheckboxControl
();
foreach
(
$this
->
getOptions
()
as
$key
=>
$option
)
{
$control
->
addCheckbox
(
$this
->
getKey
().
'[]'
,
$key
,
$option
,
isset
(
$value
[
$key
]));
}
return
$control
;
}
protected
function
newConduitParameterType
()
{
return
new
ConduitStringListParameterType
();
}
public
function
newConduitConstants
()
{
$list
=
array
();
foreach
(
$this
->
getOptions
()
as
$key
=>
$option
)
{
$list
[]
=
id
(
new
ConduitConstantDescription
())
->
setKey
(
$key
)
->
setValue
(
$option
);
}
foreach
(
$this
->
getDeprecatedOptions
()
as
$key
=>
$value
)
{
$list
[]
=
id
(
new
ConduitConstantDescription
())
->
setKey
(
$key
)
->
setIsDeprecated
(
true
)
->
setValue
(
pht
(
'Deprecated alias for "%s".'
,
$value
));
}
return
$list
;
}
private
function
getCanonicalValue
(
array
$values
)
{
// Always map the current normal options to themselves.
$normal_options
=
array_fuse
(
array_keys
(
$this
->
getOptions
()));
// Map deprecated values to their new values.
$deprecated_options
=
$this
->
getDeprecatedOptions
();
$map
=
$normal_options
+
$deprecated_options
;
foreach
(
$values
as
$key
=>
$value
)
{
$values
[
$key
]
=
idx
(
$map
,
$value
,
$value
);
}
return
$values
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 13, 1:22 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
113326
Default Alt Text
PhabricatorSearchCheckboxesField.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment