dbms_primeidc/extdbms/lib/Controllers/DBMS/CouponController.php
2025-04-04 14:18:33 +09:00

20 lines
414 B
PHP

<?php
namespace lib\Controllers\DBMS;
class CouponController extends BaseController
{
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