20 lines
414 B
PHP
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
|