/home/techb158/exp.abdallabala.com/application/autoload
Edit: /home/techb158/exp.abdallabala.com/application/autoload/Timezone.php (1171B)
(int) $currentTimezone->getOffset($utcTime),
'identifier' => $timezoneIdentifier,
];
}
// Sort the array by offset,identifier ascending
usort($tempTimezones, function ($a, $b) {
return $a['offset'] == $b['offset']
? strcmp($a['identifier'], $b['identifier'])
: $a['offset'] - $b['offset'];
});
$timezoneList = [];
foreach ($tempTimezones as $tz) {
$sign = $tz['offset'] > 0 ? '+' : '-';
$offset = gmdate('H:i', abs($tz['offset']));
$timezoneList[$tz['identifier']] =
'(UTC ' . $sign . $offset . ') ' . $tz['identifier'];
}
return $timezoneList;
}
}