formwork/panel/views/fields/page/template.php
Giuseppe Criscione 9b4f9f772b Rearrange schemes
2023-04-26 16:15:59 +02:00

12 lines
367 B
PHP

<?= $this->layout('fields.field') ?>
<select id="page-template" name="template">
<?php
foreach ($templates as $template):
$scheme = $formwork->schemes()->get('pages.' . $template);
?>
<option value="<?= $template ?>"<?php if ($page->template()->name() === $template): ?> selected<?php endif; ?>><?= $scheme->title() ?></option>
<?php
endforeach;
?>
</select>