dbms_primeidc_init...1
This commit is contained in:
parent
086fb997e3
commit
f572711d14
@ -1,22 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace lib\Controllers\DBMS;
|
namespace lib\Controllers\DBMS\Client;
|
||||||
|
|
||||||
use lib\Services\ClientService;
|
use lib\Services\ClientService;
|
||||||
|
|
||||||
class PaymentController extends DBMSController
|
class PaymentController extends ClientController
|
||||||
{
|
{
|
||||||
private ?ClientService $_clientService = null;
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
$this->getView()->setPath('payment');
|
$this->getView()->setPath('payment');
|
||||||
} //
|
} //
|
||||||
public function getClientService(): ClientService
|
|
||||||
{
|
|
||||||
if ($this->_clientService === null) {
|
|
||||||
$this->_clientService = new ClientService();
|
|
||||||
}
|
|
||||||
return $this->_clientService;
|
|
||||||
}
|
|
||||||
} //Class
|
} //Class
|
||||||
|
|||||||
@ -24,7 +24,7 @@ class NavigatorController extends DBMSController
|
|||||||
}
|
}
|
||||||
|
|
||||||
//부가서비스 : 닷디펜더,딥파인더 등, deepfinder_list.php,dotdefender_list.php
|
//부가서비스 : 닷디펜더,딥파인더 등, deepfinder_list.php,dotdefender_list.php
|
||||||
//CLI 접속방법 : php index.php site/navigator//ipsearch
|
//CLI 접속방법 : php index.php site/navigator/ipsearch
|
||||||
//WEB 접속방법 : http://localhost/site/navigator/ipsearch
|
//WEB 접속방법 : http://localhost/site/navigator/ipsearch
|
||||||
public function ipsearch(): string
|
public function ipsearch(): string
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user