dbmsv4/app/Views/cells/serverpart/detail.php
2025-11-24 17:54:41 +09:00

29 lines
1.1 KiB
PHP

<td>
<?php foreach (SERVERPART['SERVER_PARTTYPES'] as $type): ?>
<?php foreach ($serverPartCellDatas['entities'][$type] as $entities): ?>
<?php foreach ($entities as $entity): ?>
<?php $serverPartCellDatas['entity'] = $entity ?>
<div><?= $serverPartCellDatas['helper']->getFieldView($type, $entity->getPK(), $serverPartCellDatas) ?></div>
<?php endforeach ?>
<?php endforeach ?>
<?php endforeach ?>
&nbsp;
</td>
<td>
<?php foreach ($serverPartCellDatas['entities']['IP'] as $entities): ?>
<?php foreach ($entities as $entity): ?>
<?php $serverPartCellDatas['entity'] = $entity ?>
<div><?= $serverPartCellDatas['helper']->getFieldView('IP', $entity->getPK(), $serverPartCellDatas) ?></div>
<?php endforeach ?>
<?php endforeach ?>
&nbsp;
</td>
<td>
<?php foreach ($serverPartCellDatas['entities']['CS'] as $entities): ?>
<?php foreach ($entities as $entity): ?>
<?php $serverPartCellDatas['entity'] = $entity ?>
<div><?= $serverPartCellDatas['helper']->getFieldView('CS', $entity->getPK(), $serverPartCellDatas) ?></div>
<?php endforeach ?>
<?php endforeach ?>
&nbsp;
</td>