Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97449313
PhabricatorSetupCheckTimezone.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jan 4, 11:11
Size
991 B
Mime Type
text/x-php
Expires
Mon, Jan 6, 11:11 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23410661
Attached To
rPH Phabricator
PhabricatorSetupCheckTimezone.php
View Options
<?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'
);
}
}
Event Timeline
Log In to Comment