vhost/app/Views/cells/product/device.php
2024-05-20 17:25:35 +09:00

23 lines
936 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],
old($category, array_key_exists('entity', $cellDatas) ? $cellDatas['entity']->$category : DEFAULTS['EMPTY']),
[
'id' => $category,
'size' => "6",
'class' => 'vhost_cellDatas'
]
) ?>
</td>
<?php endforeach ?>
</tr>
</table>