29 lines
1.2 KiB
PHP
29 lines
1.2 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['service']->getHelper()->getFieldView($type, $entity->getPK(), $serverPartCellDatas) ?></div>
|
|
<?php endforeach ?>
|
|
<?php endforeach ?>
|
|
<?php endforeach ?>
|
|
|
|
</td>
|
|
<td>
|
|
<?php foreach ($serverPartCellDatas['entities']['IP'] as $entities): ?>
|
|
<?php foreach ($entities as $entity): ?>
|
|
<?php $serverPartCellDatas['entity'] = $entity ?>
|
|
<div><?= $serverPartCellDatas['service']->getHelper()->getFieldView('IP', $entity->getPK(), $serverPartCellDatas) ?></div>
|
|
<?php endforeach ?>
|
|
<?php endforeach ?>
|
|
|
|
</td>
|
|
<td>
|
|
<?php foreach ($serverPartCellDatas['entities']['CS'] as $entities): ?>
|
|
<?php foreach ($entities as $entity): ?>
|
|
<?php $serverPartCellDatas['entity'] = $entity ?>
|
|
<div><?= $serverPartCellDatas['service']->getHelper()->getFieldView('CS', $entity->getPK(), $serverPartCellDatas) ?></div>
|
|
<?php endforeach ?>
|
|
<?php endforeach ?>
|
|
|
|
</td>
|