dbms/app/Controllers/Admin/AdminController.php
2025-05-23 13:42:48 +09:00

24 lines
731 B
PHP

<?php
namespace App\Controllers\Admin;
use App\Controllers\CommonController;
use CodeIgniter\HTTP\RequestInterface;
use CodeIgniter\HTTP\ResponseInterface;
use Psr\Log\LoggerInterface;
abstract class AdminController extends CommonController
{
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
{
parent::initController($request, $response, $logger);
$this->layout = "admin";
$this->uri_path = "admin/";
$this->view_path = "admin" . DIRECTORY_SEPARATOR;
$this->title = "관리자";
$this->individualStylesheets = [];
$this->individualScripts = [];
$this->helper = $this->getHelper();
}
}