Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/check/PhabricatorExtraConfigSetupCheck.php
| Show First 20 Lines • Show All 316 Lines • ▼ Show 20 Lines | public static function getAncientConfig() { | ||||
| $mailers_reason = pht( | $mailers_reason = pht( | ||||
| 'Inbound and outbound mail is now configured with "cluster.mailers".'); | 'Inbound and outbound mail is now configured with "cluster.mailers".'); | ||||
| $prefix_reason = pht( | $prefix_reason = pht( | ||||
| 'Per-application mail subject prefix customization is no longer '. | 'Per-application mail subject prefix customization is no longer '. | ||||
| 'directly supported. Prefixes and other strings may be customized with '. | 'directly supported. Prefixes and other strings may be customized with '. | ||||
| '"translation.override".'); | '"translation.override".'); | ||||
| $phd_reason = pht( | |||||
| 'Use "bin/phd debug ..." to get a detailed daemon execution log.'); | |||||
| $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 201 Lines • ▼ Show 20 Lines | $ancient_config += array( | ||||
| 'This ancient extension point has been replaced with other '. | 'This ancient extension point has been replaced with other '. | ||||
| 'mechanisms, including "AphrontSite".'), | 'mechanisms, including "AphrontSite".'), | ||||
| 'differential.whitespace-matters' => pht( | 'differential.whitespace-matters' => pht( | ||||
| 'Whitespace rendering is now handled automatically.'), | 'Whitespace rendering is now handled automatically.'), | ||||
| 'phd.pid-directory' => pht( | 'phd.pid-directory' => pht( | ||||
| 'Phabricator daemons no longer use PID files.'), | 'Phabricator daemons no longer use PID files.'), | ||||
| 'phd.trace' => $phd_reason, | |||||
| 'phd.verbose' => $phd_reason, | |||||
| ); | ); | ||||
| return $ancient_config; | return $ancient_config; | ||||
| } | } | ||||
| } | } | ||||