vhost/app/Views/cells/product/device.php
2024-05-20 19:18:29 +09:00

23 lines
850 B
PHP

<table class="table table-bordered" style="width: auto;">
<tr>
<?php foreach ($cellDatas['device']['categorys'] as $category) : ?>
<th style="background-color:silver; text-align:center;"><?= lang('Device.CATEGORY.' . $category) . " 선택" ?></th>
<?php endforeach ?>
</tr>
<tr>
<?php foreach ($cellDatas['device']['categorys'] as $category) : ?>
<td>
<?= form_dropdown(
$category,
$cellDatas['device']['options'][$category],
$cellDatas['defaults'],
[
'id' => $category,
'size' => "6",
'class' => 'vhost_cellDatas'
]
) ?>
</td>
<?php endforeach ?>
</tr>
</table>