dbmsv2/app/Views/cells/serverpart/part_service.php
2025-09-15 14:04:19 +09:00

9 lines
778 B
PHP

<?php $htmls = $texts = [$serverPartCellDatas['serverEntity']->getCode()] ?>
<?php foreach (['SWITCH', 'IP', 'OS'] as $type): ?>
<?php $texts[] = $serverPartCellDatas['service']->getHelper()->getFieldView($type, '', $serverPartCellDatas, ['return_type' => 'text']); ?>
<?php $button = $serverPartCellDatas['service']->getHelper()->getListButton($type, '', $serverPartCellDatas) ?>
<?php $htmls[] = $button . $serverPartCellDatas['service']->getHelper()->getFieldView($type, '', $serverPartCellDatas) ?>
<?php endforeach ?>
<?= implode(" /", $htmls) ?>
<?php $text = implode('/', $texts) ?>
<div class="serverparts float-end rounded border border-primary" style="cursor:pointer;" onclick="copyServerPartToClipboard('<?= $text ?>')" text-data="<?= $text ?>">COPY</div>