MaketRandevu/application/views/components/timezone_dropdown.php

17 lines
418 B
PHP

<?php
/**
* @var string $attributes
* @var array $timezones
*/
?>
<select <?= $attributes ?>>
<?php foreach ($timezones as $continent => $entries): ?>
<optgroup label="<?= $continent ?>">
<?php foreach ($entries as $value => $name): ?>
<option value="<?= $value ?>"><?= $name ?></option>
<?php endforeach ?>
</optgroup>
<?php endforeach ?>
</select>