dbmsv4/app/Views/cells/server/servicelist.php
2025-11-25 11:52:10 +09:00

13 lines
595 B
PHP

<?php $temps = []; ?>
<?php foreach ($serverCellDatas['entities'] as $entity): ?>
<?php $serverCellDatas['entity'] = $entity ?>
<?php $value = sprintf(
"%s / %s / %s / %s",
$entity->getCustomTitle(),
$serverCellDatas['helper']->getFieldView('switchinfo_uid', $entity->getSwitchInfoUID(), $serverCellDatas),
$entity->getIP(),
$entity->getOS()
) ?>
<?php $temps[] = "<span class=\"serverparts\" style=\"cursor:pointer;\" onClick=\"copyServerPartToClipboard('{$value}')\" text-data=\"{$value}\">📋</span>{$value}" ?>
<?php endforeach; ?>
<?= implode("<BR>", $temps) ?>