mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
32 lines
991 B
PHP
32 lines
991 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorSetupCheckTimezone extends PhabricatorSetupCheck {
|
||
|
|
||
|
protected function executeChecks() {
|
||
|
$timezone = nonempty(
|
||
|
PhabricatorEnv::getEnvConfig('phabricator.timezone'),
|
||
|
ini_get('date.timezone'));
|
||
|
if ($timezone) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$summary = pht(
|
||
|
"Without a configured timezone, PHP will emit warnings when working ".
|
||
|
"with dates, and dates and times may not display correctly.");
|
||
|
|
||
|
$message = pht(
|
||
|
"Your configuration fails to specify a server timezone. You can either ".
|
||
|
"set the PHP configuration value 'date.timezone' or the Phabricator ".
|
||
|
"configuration value 'phabricator.timezone' to specify one.");
|
||
|
|
||
|
$this
|
||
|
->newIssue('config.timezone')
|
||
|
->setShortName(pht('Timezone'))
|
||
|
->setName(pht('Server Timezone Not Configured'))
|
||
|
->setSummary($summary)
|
||
|
->setMessage($message)
|
||
|
->addPHPConfig('date.timezone')
|
||
|
->addPhabricatorConfig('phabricator.timezone');
|
||
|
}
|
||
|
}
|