mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-11 02:22:25 +03:00
18 lines
442 B
PHP
18 lines
442 B
PHP
<?php
|
|
/**
|
|
* Local variables.
|
|
*
|
|
* @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>
|