dbms_primeidc/extdbms/lib/Controllers/DBMS/Client/CouponController.php
2025-04-07 10:44:52 +09:00

20 lines
423 B
PHP

<?php
namespace lib\Controllers\DBMS\Client;
class CouponController extends ClientController
{
public function __construct()
{
parent::__construct();
$this->getView()->setPath('coupon');
} //
//CLI 접속방법 : php index.php site/counpon
//WEB 접속방법 : http://localhost/site/coupon
public function index()
{
return $this->render(__FUNCTION__);
}
} //Class