Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91747413
PhabricatorSetupCheckInvalidConfig.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
Thu, Nov 14, 01:46
Size
967 B
Mime Type
text/x-php
Expires
Sat, Nov 16, 01:46 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22318151
Attached To
rPH Phabricator
PhabricatorSetupCheckInvalidConfig.php
View Options
<?php
final
class
PhabricatorSetupCheckInvalidConfig
extends
PhabricatorSetupCheck
{
protected
function
executeChecks
()
{
$groups
=
PhabricatorApplicationConfigOptions
::
loadAll
();
foreach
(
$groups
as
$group
)
{
$options
=
$group
->
getOptions
();
foreach
(
$options
as
$option
)
{
try
{
$group
->
validateOption
(
$option
,
PhabricatorEnv
::
getUnrepairedEnvConfig
(
$option
->
getKey
()));
}
catch
(
PhabricatorConfigValidationException
$ex
)
{
$this
->
newIssue
(
'config.invalid.'
.
$option
->
getKey
())
->
setName
(
pht
(
"Config '%s' Invalid"
,
$option
->
getKey
()))
->
setMessage
(
pht
(
"Configuration option '%s' has invalid value and "
.
"was restored to the default: %s"
,
$option
->
getKey
(),
$ex
->
getMessage
()))
->
addPhabricatorConfig
(
$option
->
getKey
());
}
}
}
}
}
Event Timeline
Log In to Comment