dbms_primeidc_init...1
This commit is contained in:
parent
b35719a45e
commit
178f94882d
@ -7,6 +7,7 @@ use lib\Services\ClientService;
|
||||
use lib\Services\VPCService;
|
||||
use lib\Services\KCSService;
|
||||
use lib\Services\HistoryService;
|
||||
use lib\Helpers\ServiceHelper;
|
||||
|
||||
class DashboardController extends BaseController
|
||||
{
|
||||
@ -20,6 +21,7 @@ class DashboardController extends BaseController
|
||||
{
|
||||
parent::__construct();
|
||||
$this->getView()->setPath('dashboard');
|
||||
$this->helper = new ServiceHelper();
|
||||
} //
|
||||
public function getMemberService(): MemberService
|
||||
{
|
||||
|
||||
@ -4,7 +4,6 @@ namespace lib\Controllers\DBMS;
|
||||
|
||||
use lib\Services\ClientService;
|
||||
use lib\Services\AddDbService;
|
||||
use lib\Helpers\ServiceHelper;
|
||||
|
||||
class ServiceController extends BaseController
|
||||
{
|
||||
@ -16,7 +15,6 @@ class ServiceController extends BaseController
|
||||
{
|
||||
parent::__construct();
|
||||
$this->getView()->setPath('service');
|
||||
$this->helper = new ServiceHelper();
|
||||
} //
|
||||
public function getClientService(): ClientService
|
||||
{
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
<?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>
|
||||
<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>
|
||||
<span class="pull-right text-muted small"><em><?= $entity->note ?></em></span>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user