Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/check/PhabricatorExtraConfigSetupCheck.php
| Show First 20 Lines • Show All 180 Lines • ▼ Show 20 Lines | public static function getAncientConfig() { | ||||
| $gc_reason = pht( | $gc_reason = pht( | ||||
| 'Garbage collectors are now configured with "%s".', | 'Garbage collectors are now configured with "%s".', | ||||
| 'bin/garbage set-policy'); | 'bin/garbage set-policy'); | ||||
| $aphlict_reason = pht( | $aphlict_reason = pht( | ||||
| 'Configuration of the notification server has changed substantially. '. | 'Configuration of the notification server has changed substantially. '. | ||||
| 'For discussion, see T10794.'); | 'For discussion, see T10794.'); | ||||
| $stale_reason = pht( | |||||
| 'The Differential revision list view age UI elements have been removed '. | |||||
| 'to simplify the interface.'); | |||||
| $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 112 Lines • ▼ Show 20 Lines | $ancient_config += array( | ||||
| 'notification.log' => $aphlict_reason, | 'notification.log' => $aphlict_reason, | ||||
| 'notification.enabled' => $aphlict_reason, | 'notification.enabled' => $aphlict_reason, | ||||
| 'notification.client-uri' => $aphlict_reason, | 'notification.client-uri' => $aphlict_reason, | ||||
| 'notification.server-uri' => $aphlict_reason, | 'notification.server-uri' => $aphlict_reason, | ||||
| 'metamta.differential.unified-comment-context' => pht( | 'metamta.differential.unified-comment-context' => pht( | ||||
| 'Inline comments are now always rendered with a limited amount '. | 'Inline comments are now always rendered with a limited amount '. | ||||
| 'of context.'), | 'of context.'), | ||||
| 'differential.days-fresh' => $stale_reason, | |||||
| 'differential.days-stale' => $stale_reason, | |||||
| ); | ); | ||||
| return $ancient_config; | return $ancient_config; | ||||
| } | } | ||||
| private function executeManiphestFieldChecks() { | private function executeManiphestFieldChecks() { | ||||
| $maniphest_appclass = 'PhabricatorManiphestApplication'; | $maniphest_appclass = 'PhabricatorManiphestApplication'; | ||||
| if (!PhabricatorApplication::isClassInstalled($maniphest_appclass)) { | if (!PhabricatorApplication::isClassInstalled($maniphest_appclass)) { | ||||
| ▲ Show 20 Lines • Show All 63 Lines • Show Last 20 Lines | |||||