first commit
Some checks failed
CI / build-test (push) Has been cancelled

This commit is contained in:
2025-05-31 18:56:37 +02:00
commit 8c4798a5fd
1240 changed files with 190468 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
/**
* Local variables.
*
* @var string $attributes
* @var array $grouped_timezones
*/
?>
<select <?= $attributes ?>>
<?php foreach ($grouped_timezones as $continent => $entries): ?>
<optgroup label="<?= $continent ?>">
<?php foreach ($entries as $value => $name): ?>
<option value="<?= $value ?>"><?= $name ?></option>
<?php endforeach; ?>
</optgroup>
<?php endforeach; ?>
</select>