X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=application%2FTimeZone.php;h=c1869ef87e1d0b96b105c792d8dc902c15ca5246;hb=HEAD;hp=e363d90a789207b821493a98a65270ba63b1ae97;hpb=b282fffa238deb41fe0aae6fe6ea68bb2b43c78e;p=github%2Fshaarli%2FShaarli.git diff --git a/application/TimeZone.php b/application/TimeZone.php index e363d90a..a420eb96 100644 --- a/application/TimeZone.php +++ b/application/TimeZone.php @@ -1,92 +1,76 @@ 'Europe', + * ], + * [ + * ['continent' => 'America', 'city' => 'Toronto'], + * ['continent' => 'Europe', 'city' => 'Paris'], + * 'selected' => 'Paris', + * ], + * ]; * - * Example: preselect Europe/Paris - * list($htmlform, $js) = generateTimeZoneForm('Europe/Paris'); + * Notes: + * - 'UTC/UTC' is mapped to 'UTC' to form a valid option + * - a few timezone cities includes the country/state, such as Argentina/Buenos_Aires + * - these arrays are designed to build timezone selects in template files with any HTML structure * - * @param string $preselected_timezone preselected timezone (optional) + * @param array $installedTimeZones List of installed timezones as string + * @param string $preselectedTimezone preselected timezone (optional) * - * @return an array containing the generated HTML form and Javascript code + * @return array[] continents and cities **/ -function generateTimeZoneForm($preselectedTimezone='') +function generateTimeZoneData($installedTimeZones, $preselectedTimezone = '') { - // Select the server timezone - if ($preselectedTimezone == '') { - $preselectedTimezone = date_default_timezone_get(); - } - if ($preselectedTimezone == 'UTC') { $pcity = $pcontinent = 'UTC'; } else { // Try to split the provided timezone $spos = strpos($preselectedTimezone, '/'); $pcontinent = substr($preselectedTimezone, 0, $spos); - $pcity = substr($preselectedTimezone, $spos+1); + $pcity = substr($preselectedTimezone, $spos + 1); } - // Display config form: - $timezoneForm = ''; - $timezoneJs = ''; - - // The list is in the form 'Europe/Paris', 'America/Argentina/Buenos_Aires' - // We split the list in continents/cities. - $continents = array(); - $cities = array(); - - // TODO: use a template to generate the HTML/Javascript form - - foreach (timezone_identifiers_list() as $tz) { + $continents = []; + $cities = []; + foreach ($installedTimeZones as $tz) { if ($tz == 'UTC') { $tz = 'UTC/UTC'; } $spos = strpos($tz, '/'); - if ($spos !== false) { - $continent = substr($tz, 0, $spos); - $city = substr($tz, $spos+1); - $continents[$continent] = 1; - - if (!isset($cities[$continent])) { - $cities[$continent] = ''; - } - $cities[$continent] .= '