You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.2 KiB
77 lines
2.2 KiB
<?php |
|
|
|
/** |
|
* This file is part of CodeIgniter 4 framework. |
|
* |
|
* (c) CodeIgniter Foundation <admin@codeigniter.com> |
|
* |
|
* For the full copyright and license information, please view |
|
* the LICENSE file that was distributed with this source code. |
|
*/ |
|
|
|
use CodeIgniter\I18n\Time; |
|
|
|
// CodeIgniter Date Helpers |
|
|
|
if (! function_exists('now')) { |
|
/** |
|
* Get "now" time |
|
* |
|
* Returns Time::now()->getTimestamp() based on the timezone parameter or on the |
|
* app_timezone() setting |
|
* |
|
* @param non-empty-string|null $timezone |
|
* |
|
* @throws Exception |
|
*/ |
|
function now(?string $timezone = null): int |
|
{ |
|
$timezone = ($timezone === null || $timezone === '') ? app_timezone() : $timezone; |
|
|
|
if ($timezone === 'local' || $timezone === date_default_timezone_get()) { |
|
return Time::now()->getTimestamp(); |
|
} |
|
|
|
$time = Time::now($timezone); |
|
sscanf( |
|
$time->format('j-n-Y G:i:s'), |
|
'%d-%d-%d %d:%d:%d', |
|
$day, |
|
$month, |
|
$year, |
|
$hour, |
|
$minute, |
|
$second |
|
); |
|
|
|
return mktime($hour, $minute, $second, $month, $day, $year); |
|
} |
|
} |
|
|
|
if (! function_exists('timezone_select')) { |
|
/** |
|
* Generates a select field of all available timezones |
|
* |
|
* Returns a string with the formatted HTML |
|
* |
|
* @param string $class Optional class to apply to the select field |
|
* @param string $default Default value for initial selection |
|
* @param int $what One of the DateTimeZone class constants (for listIdentifiers) |
|
* @param string $country A two-letter ISO 3166-1 compatible country code (for listIdentifiers) |
|
* |
|
* @throws Exception |
|
*/ |
|
function timezone_select(string $class = '', string $default = '', int $what = DateTimeZone::ALL, ?string $country = null): string |
|
{ |
|
$timezones = DateTimeZone::listIdentifiers($what, $country); |
|
|
|
$buffer = "<select name='timezone' class='{$class}'>\n"; |
|
|
|
foreach ($timezones as $timezone) { |
|
$selected = ($timezone === $default) ? 'selected' : ''; |
|
$buffer .= "<option value='{$timezone}' {$selected}>{$timezone}</option>\n"; |
|
} |
|
|
|
return $buffer . ("</select>\n"); |
|
} |
|
}
|
|
|