first standalone plugin commit
This commit is contained in:
10
templates/Cities/select.php
Normal file
10
templates/Cities/select.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
* @var \App\View\AppView $this
|
||||
* @var iterable<\Cake\Datasource\EntityInterface> $cities
|
||||
*/
|
||||
$this->setLayout('ajax');
|
||||
?>
|
||||
<?php foreach ($cities as $cityId => $city): ?>
|
||||
<option value="<?= $cityId; ?>"><?= $city; ?></option>
|
||||
<?php endforeach; ?>
|
||||
Reference in New Issue
Block a user