Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/check/PhabricatorExtraConfigSetupCheck.php
| Show First 20 Lines • Show All 170 Lines • ▼ Show 20 Lines | public static function getAncientConfig() { | ||||
| $monospace_reason = pht( | $monospace_reason = pht( | ||||
| 'Phabricator no longer supports global customization of monospaced '. | 'Phabricator no longer supports global customization of monospaced '. | ||||
| 'fonts.'); | 'fonts.'); | ||||
| $public_mail_reason = pht( | $public_mail_reason = pht( | ||||
| 'Inbound mail addresses are now configured for each application '. | 'Inbound mail addresses are now configured for each application '. | ||||
| 'in the Applications tool.'); | 'in the Applications tool.'); | ||||
| $gc_reason = pht( | |||||
| 'Garbage collectors are now configured with "%s".', | |||||
| 'bin/garbage set-policy'); | |||||
| $ancient_config += array( | $ancient_config += array( | ||||
| 'phid.external-loaders' => | 'phid.external-loaders' => | ||||
| pht( | pht( | ||||
| 'External loaders have been replaced. Extend `%s` '. | 'External loaders have been replaced. Extend `%s` '. | ||||
| 'to implement new PHID and handle types.', | 'to implement new PHID and handle types.', | ||||
| 'PhabricatorPHIDType'), | 'PhabricatorPHIDType'), | ||||
| 'maniphest.custom-task-extensions-class' => | 'maniphest.custom-task-extensions-class' => | ||||
| pht( | pht( | ||||
| ▲ Show 20 Lines • Show All 88 Lines • ▼ Show 20 Lines | $ancient_config += array( | ||||
| 'security.allow-conduit-act-as-user' => pht( | 'security.allow-conduit-act-as-user' => pht( | ||||
| 'Impersonating users over the API is no longer supported.'), | 'Impersonating users over the API is no longer supported.'), | ||||
| 'feed.public' => pht('The framable public feed is no longer supported.'), | 'feed.public' => pht('The framable public feed is no longer supported.'), | ||||
| 'auth.login-message' => pht( | 'auth.login-message' => pht( | ||||
| 'This configuration option has been replaced with a modular '. | 'This configuration option has been replaced with a modular '. | ||||
| 'handler. See T9346.'), | 'handler. See T9346.'), | ||||
| 'gcdaemon.ttl.herald-transcripts' => $gc_reason, | |||||
| 'gcdaemon.ttl.daemon-logs' => $gc_reason, | |||||
| 'gcdaemon.ttl.differential-parse-cache' => $gc_reason, | |||||
| 'gcdaemon.ttl.markup-cache' => $gc_reason, | |||||
| 'gcdaemon.ttl.task-archive' => $gc_reason, | |||||
| 'gcdaemon.ttl.general-cache' => $gc_reason, | |||||
| 'gcdaemon.ttl.conduit-logs' => $gc_reason, | |||||
| ); | ); | ||||
| return $ancient_config; | return $ancient_config; | ||||
| } | } | ||||
| } | } | ||||