mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-21 09:42:50 +01:00
107 lines
3.0 KiB
PHP
107 lines
3.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Composers;
|
|
|
|
use DateTime;
|
|
use DateTimeZone;
|
|
use Illuminate\Contracts\Config\Repository;
|
|
use Illuminate\Contracts\View\View;
|
|
|
|
/**
|
|
* This is the timezone locale composer.
|
|
*
|
|
* @author Joseph Cohen <joe@alt-three.com>
|
|
* @author James Brooks <james@alt-three.com>
|
|
* @author Graham Campbell <graham@alt-three.com>
|
|
*/
|
|
class TimezoneLocaleComposer
|
|
{
|
|
/**
|
|
* The illuminate config instance.
|
|
*
|
|
* @var \Illuminate\Contracts\Config\Repository
|
|
*/
|
|
protected $config;
|
|
|
|
/**
|
|
* Create a new timezone locale composer.
|
|
*
|
|
* @param \Illuminate\Contracts\Config\Repository $config
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(Repository $config)
|
|
{
|
|
$this->config = $config;
|
|
}
|
|
|
|
/**
|
|
* Timezones and Locales composer.
|
|
*
|
|
* @param \Illuminate\Contracts\View\View $view
|
|
*
|
|
* @return void
|
|
*/
|
|
public function compose(View $view)
|
|
{
|
|
$enabledLangs = $this->config->get('langs');
|
|
|
|
$langs = array_map(function ($lang) use ($enabledLangs) {
|
|
$locale = basename($lang);
|
|
|
|
return [$locale => array_get($enabledLangs, $locale, [
|
|
'name' => $locale,
|
|
'subset' => null,
|
|
])];
|
|
}, glob(base_path('resources/lang').'/*'));
|
|
|
|
$langs = call_user_func_array('array_merge', $langs);
|
|
|
|
$regions = [
|
|
'UTC' => DateTimeZone::UTC,
|
|
'Africa' => DateTimeZone::AFRICA,
|
|
'America' => DateTimeZone::AMERICA,
|
|
'Antarctica' => DateTimeZone::ANTARCTICA,
|
|
'Arctic' => DateTimeZone::ARCTIC,
|
|
'Asia' => DateTimeZone::ASIA,
|
|
'Atlantic' => DateTimeZone::ATLANTIC,
|
|
'Australia' => DateTimeZone::AUSTRALIA,
|
|
'Europe' => DateTimeZone::EUROPE,
|
|
'Indian' => DateTimeZone::INDIAN,
|
|
'Pacific' => DateTimeZone::PACIFIC,
|
|
];
|
|
|
|
$timezones = [];
|
|
|
|
foreach ($regions as $name => $mask) {
|
|
$zones = DateTimeZone::listIdentifiers($mask);
|
|
|
|
foreach ($zones as $timezone) {
|
|
// Lets sample the time there right now
|
|
$time = new DateTime(null, new DateTimeZone($timezone));
|
|
|
|
if ($timezone !== 'UTC') {
|
|
// Remove region name and add a sample time
|
|
$timezones[$name][$timezone] = substr($timezone, strlen($name) + 1).' - '.$time->format('H:i');
|
|
} else {
|
|
$timezones[$name][$timezone] = 'UTC - '.$time->format('H:i');
|
|
}
|
|
|
|
$timezones[$name] = str_replace('_', ' ', $timezones[$name]);
|
|
}
|
|
}
|
|
|
|
$view->withTimezones($timezones);
|
|
$view->withLangs($langs);
|
|
}
|
|
}
|