Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/check/PhabricatorExtraConfigSetupCheck.php
| Show First 20 Lines • Show All 161 Lines • ▼ Show 20 Lines | public static function getAncientConfig() { | ||||
| $reply_domain_reason = pht( | $reply_domain_reason = pht( | ||||
| 'Individual application reply handler domains have been removed. '. | 'Individual application reply handler domains have been removed. '. | ||||
| 'Configure a reply domain with "%s".', | 'Configure a reply domain with "%s".', | ||||
| 'metamta.reply-handler-domain'); | 'metamta.reply-handler-domain'); | ||||
| $reply_handler_reason = pht( | $reply_handler_reason = pht( | ||||
| 'Reply handlers can no longer be overridden with configuration.'); | 'Reply handlers can no longer be overridden with configuration.'); | ||||
| $monospace_reason = pht( | |||||
| 'Phabricator no longer supports global customization of monospaced '. | |||||
| 'fonts.'); | |||||
| $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 20 Lines • Show All 62 Lines • ▼ Show 20 Lines | $ancient_config += array( | ||||
| 'metamta.diffusion.reply-handler' => $reply_handler_reason, | 'metamta.diffusion.reply-handler' => $reply_handler_reason, | ||||
| 'metamta.differential.reply-handler' => $reply_handler_reason, | 'metamta.differential.reply-handler' => $reply_handler_reason, | ||||
| 'metamta.maniphest.reply-handler' => $reply_handler_reason, | 'metamta.maniphest.reply-handler' => $reply_handler_reason, | ||||
| 'metamta.package.reply-handler' => $reply_handler_reason, | 'metamta.package.reply-handler' => $reply_handler_reason, | ||||
| 'metamta.precedence-bulk' => pht( | 'metamta.precedence-bulk' => pht( | ||||
| 'Phabricator now always sends transaction mail with '. | 'Phabricator now always sends transaction mail with '. | ||||
| '"Precedence: bulk" to improve deliverability.'), | '"Precedence: bulk" to improve deliverability.'), | ||||
| 'style.monospace' => $monospace_reason, | |||||
| 'style.monospace.windows' => $monospace_reason, | |||||
| ); | ); | ||||
| return $ancient_config; | return $ancient_config; | ||||
| } | } | ||||
| } | } | ||||