Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/check/PhabricatorSetupCheckExtraConfig.php
| Show First 20 Lines • Show All 140 Lines • ▼ Show 20 Lines | public static function getAncientConfig() { | ||||
| $ancient_config = array_fill_keys($auth_config, $reason_auth); | $ancient_config = array_fill_keys($auth_config, $reason_auth); | ||||
| $markup_reason = pht( | $markup_reason = pht( | ||||
| 'Custom remarkup rules are now added by subclassing '. | 'Custom remarkup rules are now added by subclassing '. | ||||
| 'PhabricatorRemarkupCustomInlineRule or '. | 'PhabricatorRemarkupCustomInlineRule or '. | ||||
| 'PhabricatorRemarkupCustomBlockRule.'); | 'PhabricatorRemarkupCustomBlockRule.'); | ||||
| $session_reason = pht( | |||||
| 'Sessions now expire and are garbage collected rather than having an '. | |||||
| 'arbitrary concurrency limit.'); | |||||
| $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 '. | ||||
| Show All 10 Lines | $ancient_config += array( | ||||
| 'differential.anonymous-access' => pht( | 'differential.anonymous-access' => pht( | ||||
| 'Phabricator now has meaningful global access controls. See '. | 'Phabricator now has meaningful global access controls. See '. | ||||
| '`policy.allow-public`.'), | '`policy.allow-public`.'), | ||||
| 'celerity.resource-path' => pht( | 'celerity.resource-path' => pht( | ||||
| 'An alternate resource map is no longer supported. Instead, use '. | 'An alternate resource map is no longer supported. Instead, use '. | ||||
| 'multiple maps. See T4222.'), | 'multiple maps. See T4222.'), | ||||
| 'metamta.send-immediately' => pht( | 'metamta.send-immediately' => pht( | ||||
| 'Mail is now always delivered by the daemons.'), | 'Mail is now always delivered by the daemons.'), | ||||
| 'auth.sessions.conduit' => $session_reason, | |||||
| 'auth.sessions.web' => $session_reason, | |||||
| ); | ); | ||||
| return $ancient_config; | return $ancient_config; | ||||
| } | } | ||||
| } | } | ||||