2022-01-18 10:45:02 +03:00
|
|
|
<select <?= vars('attributes') ?>>
|
|
|
|
<?php foreach (vars('timezones') as $continent => $entries): ?>
|
2020-03-29 15:05:34 +03:00
|
|
|
<optgroup label="<?= $continent ?>">
|
|
|
|
<?php foreach ($entries as $value => $name): ?>
|
|
|
|
<option value="<?= $value ?>"><?= $name ?></option>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</optgroup>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</select>
|