Add the "format_timezone" helper function

This commit is contained in:
Alex Tselegidis 2023-02-21 07:44:34 +01:00
parent 98976ee382
commit c3aca37591
1 changed files with 20 additions and 0 deletions

View File

@ -164,4 +164,24 @@ if ( ! function_exists('format_date_time'))
} }
} }
if ( ! function_exists('format_timezone'))
{
/**
* Format a timezone string based on the current app settings.
*
* @param string $value
*
* @return string
*/
function format_timezone(string $value): string
{
/** @var EA_Controller $CI */
$CI =& get_instance();
$CI->load->library('timezones');
return $CI->timezones->get_timezone_name($value);
}
}