13 lines
595 B
PHP
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) ?>
|