dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-03 18:45:20 +09:00
parent 3c90f2143e
commit 779f46b513

View File

@ -12,11 +12,10 @@
</style> </style>
<div><strong>패스워드용 난수 : </strong><input type=text style="width:290px;" value="<?= $this->helper->getRandomString() ?>"></div> <div><strong>패스워드용 난수 : </strong><input type=text style="width:290px;" value="<?= $this->helper->getRandomString() ?>"></div>
<?php foreach ($this->entitys as $entity): ?> <?php foreach ($this->entitys as $entity): ?>
<?php if (array_key_exists($entity->getPK(), $this->services)) { ?> <?php $service = $this->services[$entity->getServiceCode()]; ?>
<div> <div>
<i class="fa fa-info-circle fa-fw"></i> <i class="fa fa-info-circle fa-fw"></i>
<a href="/serviceDetailSolo.sev?client_code=<?= $this->clients[$entity->getPK()]->getPK() ?>&service_code=<?= $entity->getServiceCode() ?>" style="text-decoration: none;color:gray;font-size:10pt;line-height:1.6em;">[ <?= $this->clients[$entity->getPK()]->getTitle() ?> ] <?= $this->services[$entity->getPK()]->getServerCode() ?> / <?= $entity->behavior ?></a> <a href="/serviceDetailSolo.sev?client_code=<?= $service->getClientCode() ?>&service_code=<?= $entity->getServiceCode() ?>" style="text-decoration: none;color:gray;font-size:10pt;line-height:1.6em;">[ <?= $this->clients[$service->getClientCode()]->getTitle() ?> ] <?= $entity->getServiceCode() ?> / <?= $entity->behavior ?></a>
<span class="pull-right text-muted small"><em><?= $entity->note ?></em></span> <span class="pull-right text-muted small"><em><?= $entity->note ?></em></span>
</div> </div>
<?php } ?>
<?php endforeach ?> <?php endforeach ?>