Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295163
PhabricatorOptionGroupSetting.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:05 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1199852
Default Alt Text
PhabricatorOptionGroupSetting.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment