Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93590397
PhabricatorOptionGroupSetting.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
Fri, Nov 29, 23:57
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 1, 23:57 (2 d)
Engine
blob
Format
Raw Data
Handle
22668716
Attached To
rPH Phabricator
PhabricatorOptionGroupSetting.php
View Options
<?php
abstract
class
PhabricatorOptionGroupSetting
extends
PhabricatorSetting
{
abstract
protected
function
getSelectOptionGroups
();
final
protected
function
getSelectOptionMap
()
{
$groups
=
$this
->
getSelectOptionGroups
();
$map
=
array
();
foreach
(
$groups
as
$group
)
{
$map
+=
$group
[
'options'
];
}
return
$map
;
}
final
protected
function
newCustomEditField
(
$object
)
{
$setting_key
=
$this
->
getSettingKey
();
$default_value
=
$object
->
getDefaultValue
(
$setting_key
);
$options
=
$this
->
getSelectOptionGroups
();
$map
=
$this
->
getSelectOptionMap
();
if
(
isset
(
$map
[
$default_value
]))
{
$default_label
=
pht
(
'Default (%s)'
,
$map
[
$default_value
]);
}
else
{
$default_label
=
pht
(
'Default (Unknown, "%s")'
,
$default_value
);
}
$head_key
=
head_key
(
$options
);
$options
[
$head_key
][
'options'
]
=
array
(
''
=>
$default_label
,
)
+
$options
[
$head_key
][
'options'
];
$flat_options
=
array
();
foreach
(
$options
as
$group
)
{
$flat_options
[
$group
[
'label'
]]
=
$group
[
'options'
];
}
return
$this
->
newEditField
(
$object
,
new
PhabricatorSelectEditField
())
->
setOptions
(
$flat_options
);
}
final
public
function
validateTransactionValue
(
$value
)
{
if
(!
strlen
(
$value
))
{
return
;
}
$map
=
$this
->
getSelectOptionMap
();
if
(!
isset
(
$map
[
$value
]))
{
throw
new
Exception
(
pht
(
'Value "%s" is not valid for setting "%s": valid values are %s.'
,
$value
,
$this
->
getSettingName
(),
implode
(
', '
,
array_keys
(
$map
))));
}
return
;
}
public
function
getTransactionNewValue
(
$value
)
{
if
(!
strlen
(
$value
))
{
return
null
;
}
return
(
string
)
$value
;
}
}
Event Timeline
Log In to Comment