Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3282385
ArcanistAliasesConfigOption.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
ArcanistAliasesConfigOption.php
View Options
<?php
final
class
ArcanistAliasesConfigOption
extends
ArcanistMultiSourceConfigOption
{
public
function
getType
(
)
{
return
'list<alias>'
;
}
public
function
getValueFromStorageValue
(
$value
)
{
if
(
!
is_array
(
$value
)
)
{
throw
new
Exception
(
pht
(
'Expected a list or dictionary!'
)
)
;
}
$aliases
=
array
(
)
;
foreach
(
$value
as
$key
=>
$spec
)
{
$aliases
[
]
=
ArcanistAlias
::
newFromConfig
(
$key
,
$spec
)
;
}
return
$aliases
;
}
protected
function
didReadStorageValueList
(
array
$list
)
{
assert_instances_of
(
$list
,
'ArcanistConfigurationSourceValue'
)
;
$results
=
array
(
)
;
foreach
(
$list
as
$spec
)
{
$source
=
$spec
->
getConfigurationSource
(
)
;
$value
=
$spec
->
getValue
(
)
;
$value
->
setConfigurationSource
(
$source
)
;
$results
[
]
=
$value
;
}
return
$results
;
}
public
function
getDisplayValueFromValue
(
$value
)
{
return
pht
(
'Use the "alias" workflow to review aliases.'
)
;
}
public
function
getStorageValueFromValue
(
$value
)
{
return
mpull
(
$value
,
'getStorageDictionary'
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Mar 24, 07:46 (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1116439
Default Alt Text
ArcanistAliasesConfigOption.php (1 KB)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment