dbms_primeidc/extdbms/lib/View/newhistorys.php

22 lines
987 B
PHP

<style>
input[type=text] {
padding: 2px;
border: 1px solid #ccc;
-webkit-border-radius: 5px;
border-radius: 5px;
}
input[type=text]:focus {
border-color: #333;
}
</style>
<div><strong>패스워드용 난수 : </strong><input type=text style="width:290px;" value="<?= $this->helper->getRandomString() ?>"></div>
<?php foreach ($viewDatas['entitys'] as $entity): ?>
<?php if (array_key_exists($entity->getPK(), $this->services)) { ?>
<div>
<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() ?> ] <?= $viewDatas['services'][$entity->getPK()]->server_code ?> / <?= $entity->behavior ?></a>
<span class="pull-right text-muted small"><em><?= $entity->note ?></em></span>
</div>
<?php } ?>
<?php endforeach ?>