384 Laravel 6 changes (#385)
* 384 Laravel 6 changes * Library versions * Update package versions * Add keyType to models * Remove unused dependencies * StyleCI fixes * Fix models for test * Fix tests output and update test runner * Unused imports * Update exceptions handler * Fix login page
This commit is contained in:
165
app/Support/Timezonelist.php
Normal file
165
app/Support/Timezonelist.php
Normal file
@@ -0,0 +1,165 @@
|
||||
<?php
|
||||
/**
|
||||
* MIT License
|
||||
* Copyright (c) 2017 Anh Vũ Đỗ
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
namespace App\Support;
|
||||
|
||||
use DateTimeZone;
|
||||
|
||||
/**
|
||||
* This library is from:
|
||||
* https://github.com/JackieDo/Timezone-List
|
||||
*
|
||||
* With some changes to suite the formatting, etc that we need
|
||||
*/
|
||||
class Timezonelist
|
||||
{
|
||||
/**
|
||||
* Whitespace seperate
|
||||
*/
|
||||
const WHITESPACE_SEP = ' ';
|
||||
/**
|
||||
* Popular timezones
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $popularTimezones = [
|
||||
'GMT' => 'GMT timezone',
|
||||
'UTC' => 'UTC timezone',
|
||||
];
|
||||
/**
|
||||
* All continents of the world
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $continents = [
|
||||
'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,
|
||||
];
|
||||
|
||||
/**
|
||||
* Format to display timezones
|
||||
*
|
||||
* @param string $timezone
|
||||
* @param string $continent
|
||||
* @param bool $htmlencode
|
||||
*
|
||||
* @throws \Exception
|
||||
* @throws \Exception
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function formatTimezone($timezone, $continent, $htmlencode = true)
|
||||
{
|
||||
$time = new \DateTimeImmutable(null, new DateTimeZone($timezone));
|
||||
$offset = $time->format('P');
|
||||
if ($htmlencode) {
|
||||
$offset = str_replace(['-', '+'], [' − ', ' + '], $offset);
|
||||
}
|
||||
$timezone = substr($timezone, \strlen($continent) + 1);
|
||||
$timezone = str_replace(['St_', '_'], ['St. ', ' '], $timezone);
|
||||
|
||||
return '(GMT/UTC'.$offset.')'.self::WHITESPACE_SEP.$timezone;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a GMT timezone select element for form
|
||||
*
|
||||
* @param string $name
|
||||
* @param string $selected
|
||||
* @param mixed $attr
|
||||
* @param bool $htmlencode
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function create($name, $selected = '', $attr = '', $htmlencode = true)
|
||||
{
|
||||
// Attributes for select element
|
||||
$attrSet = '';
|
||||
if (!empty($attr)) {
|
||||
if (\is_array($attr)) {
|
||||
foreach ($attr as $attr_name => $attr_value) {
|
||||
$attrSet .= ' '.$attr_name.'="'.$attr_value.'"';
|
||||
}
|
||||
} else {
|
||||
$attrSet = ' '.$attr;
|
||||
}
|
||||
}
|
||||
// start select element
|
||||
$listbox = '<select name="'.$name.'"'.$attrSet.'>';
|
||||
// Add popular timezones
|
||||
$listbox .= '<optgroup label="General">';
|
||||
foreach ($this->popularTimezones as $key => $value) {
|
||||
$selected_attr = ($selected === $key) ? ' selected="selected"' : '';
|
||||
$listbox .= '<option value="'.$key.'"'.$selected_attr.'>'.$value.'</option>';
|
||||
}
|
||||
$listbox .= '</optgroup>';
|
||||
// Add all timezone of continents
|
||||
foreach ($this->continents as $continent => $mask) {
|
||||
$timezones = DateTimeZone::listIdentifiers($mask);
|
||||
// start optgroup tag
|
||||
$listbox .= '<optgroup label="'.$continent.'">';
|
||||
// create option tags
|
||||
foreach ($timezones as $timezone) {
|
||||
$selected_attr = ($selected === $timezone) ? ' selected="selected"' : '';
|
||||
$listbox .= '<option value="'.$timezone.'"'.$selected_attr.'>';
|
||||
$listbox .= $this->formatTimezone($timezone, $continent, $htmlencode);
|
||||
$listbox .= '</option>';
|
||||
}
|
||||
// end optgroup tag
|
||||
$listbox .= '</optgroup>';
|
||||
}
|
||||
// end select element
|
||||
$listbox .= '</select>';
|
||||
return $listbox;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a timezone array
|
||||
*
|
||||
* @param bool $htmlencode
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function toArray($htmlencode = false)
|
||||
{
|
||||
$list = [];
|
||||
// Add popular timezones to list
|
||||
foreach ($this->popularTimezones as $key => $value) {
|
||||
$list['General'][$key] = $value;
|
||||
}
|
||||
// Add all timezone of continents to list
|
||||
foreach ($this->continents as $continent => $mask) {
|
||||
$timezones = DateTimeZone::listIdentifiers($mask);
|
||||
foreach ($timezones as $timezone) {
|
||||
$list[$continent][$timezone] = $this->formatTimezone($timezone, $continent, $htmlencode);
|
||||
}
|
||||
}
|
||||
return $list;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user