Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/check/PhabricatorSetupCheckExtraConfig.php
| Show First 20 Lines • Show All 135 Lines • ▼ Show 20 Lines | $auth_config = array( | ||||
| 'phabricator.registration-enabled', | 'phabricator.registration-enabled', | ||||
| 'phabricator.auth-permanent', | 'phabricator.auth-permanent', | ||||
| 'phabricator.application-id', | 'phabricator.application-id', | ||||
| 'phabricator.application-secret', | 'phabricator.application-secret', | ||||
| ); | ); | ||||
| $ancient_config = array_fill_keys($auth_config, $reason_auth); | $ancient_config = array_fill_keys($auth_config, $reason_auth); | ||||
| $markup_reason = pht( | |||||
| 'Custom remarkup rules are now added by subclassing '. | |||||
| 'PhabricatorRemarkupCustomInlineRule or '. | |||||
| 'PhabricatorRemarkupCustomBlockRule.'); | |||||
| $ancient_config += array( | $ancient_config += array( | ||||
| 'phid.external-loaders' => | 'phid.external-loaders' => | ||||
| pht( | pht( | ||||
| 'External loaders have been replaced. Extend `PhabricatorPHIDType` '. | 'External loaders have been replaced. Extend `PhabricatorPHIDType` '. | ||||
| 'to implement new PHID and handle types.'), | 'to implement new PHID and handle types.'), | ||||
| 'maniphest.custom-task-extensions-class' => | 'maniphest.custom-task-extensions-class' => | ||||
| pht( | pht( | ||||
| 'Maniphest fields are now loaded automatically. You can configure '. | 'Maniphest fields are now loaded automatically. You can configure '. | ||||
| 'them with `maniphest.fields`.'), | 'them with `maniphest.fields`.'), | ||||
| 'maniphest.custom-fields' => | 'maniphest.custom-fields' => | ||||
| pht( | pht( | ||||
| 'Maniphest fields are now defined in '. | 'Maniphest fields are now defined in '. | ||||
| '`maniphest.custom-field-definitions`. Existing definitions have '. | '`maniphest.custom-field-definitions`. Existing definitions have '. | ||||
| 'been migrated.'), | 'been migrated.'), | ||||
| 'differential.custom-remarkup-rules' => $markup_reason, | |||||
| 'differential.custom-remarkup-block-rules' => $markup_reason, | |||||
| ); | ); | ||||
| return $ancient_config; | return $ancient_config; | ||||
| } | } | ||||
| } | } | ||||