dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-02 17:40:35 +09:00
parent df5b8c9537
commit 5412e965ea
3 changed files with 41 additions and 43 deletions

View File

@ -21,7 +21,43 @@ class DashboardController extends BaseController
parent::__construct(); parent::__construct();
$this->getView()->setPath('dashboard'); $this->getView()->setPath('dashboard');
} // } //
public function getMemberService(): MemberService
{
if ($this->_memberService === null) {
$this->_memberService = new MemberService();
}
return $this->_memberService;
}
public function getClientService(): ClientService
{
if ($this->_clientService === null) {
$this->_clientService = new ClientService();
}
return $this->_clientService;
}
public function getVPCService(): VPCService
{
if ($this->_vpcService === null) {
$this->_vpcService = new VPCService();
}
return $this->_vpcService;
}
public function getKCSService(): KCSService
{
if ($this->_kcsService === null) {
$this->_kcsService = new KCSService();
}
return $this->_kcsService;
}
public function getHistoryService(): HistoryService
{
if ($this->_historyService === null) {
$this->_historyService = new HistoryService();
}
return $this->_historyService;
}
//Dashboard , default_alert.php //Dashboard , default_alert.php
//CLI 접속방법 : php index.php SiteController/dashboard //CLI 접속방법 : php index.php SiteController/dashboard
//WEB 접속방법 : http://localhost/SiteController/dashboard //WEB 접속방법 : http://localhost/SiteController/dashboard
@ -75,44 +111,6 @@ class DashboardController extends BaseController
$this->total = $total; $this->total = $total;
return $this->render(__FUNCTION__); return $this->render(__FUNCTION__);
} }
public function getMemberService(): MemberService
{
if ($this->_memberService === null) {
$this->_memberService = new MemberService();
}
return $this->_memberService;
}
public function getClientService(): ClientService
{
if ($this->_clientService === null) {
$this->_clientService = new ClientService();
}
return $this->_clientService;
}
public function getVPCService(): VPCService
{
if ($this->_vpcService === null) {
$this->_vpcService = new VPCService();
}
return $this->_vpcService;
}
public function getKCSService(): KCSService
{
if ($this->_kcsService === null) {
$this->_kcsService = new KCSService();
}
return $this->_kcsService;
}
public function getHistoryService(): HistoryService
{
if ($this->_historyService === null) {
$this->_historyService = new HistoryService();
}
return $this->_historyService;
}
//신규서버현황 new_server_list.php //신규서버현황 new_server_list.php
//CLI 접속방법 : php index.php SiteController/newservices/limit/5 //CLI 접속방법 : php index.php SiteController/newservices/limit/5
//WEB 접속방법 : http://localhost/SiteController/newservices/limit/5 //WEB 접속방법 : http://localhost/SiteController/newservices/limit/5

View File

@ -370,7 +370,7 @@ $(document).ready(function(){
<li><a href="/vpcInfo.sev">CS정보</a></li> <li><a href="/vpcInfo.sev">CS정보</a></li>
<li><a href="/usableServerList.ser">가용장비</a></li> <li><a href="/usableServerList.ser">가용장비</a></li>
<li><a href="http://foridcjp.com" target="_blank">도메인포워딩</a></li> <li><a href="http://foridcjp.com" target="_blank">도메인포워딩</a></li>
<li><a href="${phpurl}/site/extraservice/ipsearch">DB검색(IP)</a></li> <li><a href="${phpurl}/DBMS/navigator/ipsearch">DB검색(IP)</a></li>
<li><a href="https://docs.google.com/spreadsheets/d/1XiXBJIuHMjU-VVmZBums6RmywuxSpTaluBYrM6hqh6w/edit#gid=0" target="_blank">업무일지</a></li> <li><a href="https://docs.google.com/spreadsheets/d/1XiXBJIuHMjU-VVmZBums6RmywuxSpTaluBYrM6hqh6w/edit#gid=0" target="_blank">업무일지</a></li>
<li><a href="https://ap-northeast-1.console.aws.amazon.com/ec2/v2/home?region=ap-northeast-1#Instances:sort=Name" target="_blank">AWS</a></li> <li><a href="https://ap-northeast-1.console.aws.amazon.com/ec2/v2/home?region=ap-northeast-1#Instances:sort=Name" target="_blank">AWS</a></li>
<li><a href="https://amp.blacklotus.net/page?id=security_status" target="_blank">BL(AMP)</a></li> <li><a href="https://amp.blacklotus.net/page?id=security_status" target="_blank">BL(AMP)</a></li>

View File

@ -2,7 +2,7 @@
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<% pageContext.setAttribute("phpurl",request.getScheme()+"://"+request.getServerName());%> <% pageContext.setAttribute("phpurl",request.getScheme()+"://"+request.getServerName());%>
<% pageContext.setAttribute("host",request.getServerName()); %> <% pageContext.setAttribute("host",request.getServerName()); %>
<c:import url="${phpurl}/site/dashboard" /> <c:import url="${phpurl}/DBMS/dashboard/topboard" />
<!-- /.row --> <!-- /.row -->
<div class="row"> <div class="row">
<div class="col-lg-8"> <div class="col-lg-8">
@ -34,7 +34,7 @@
<div class="row"> <div class="row">
<div class="col-lg-12"> <div class="col-lg-12">
<div class="table-responsive"> <div class="table-responsive">
<c:import url="${phpurl}/site/totalcount/sitekey/${host}" /> <c:import url="${phpurl}/DBMS/dashboard/totalcount/sitekey/${host}" />
</div> </div>
<!-- /.table-responsive --> <!-- /.table-responsive -->
</div> </div>
@ -67,7 +67,7 @@
<div class="row"> <div class="row">
<div class="col-lg-12"> <div class="col-lg-12">
<div class="table-responsive"> <div class="table-responsive">
<c:import url="${phpurl}/site/newservices" /> <c:import url="${phpurl}/DBMS/service/latest_service" />
</div> </div>
<!-- /.table-responsive --> <!-- /.table-responsive -->
</div> </div>
@ -89,7 +89,7 @@
</div> </div>
<div class="panel-body"> <div class="panel-body">
<div class="list-group"> <div class="list-group">
<c:import url="${phpurl}/site/newhistorys" /> <c:import url="${phpurl}/DBMS/service/latest_history" />
</div> </div>
</div> </div>
</div> </div>