dbms/app/Controllers/Admin/AdminController.php
2025-06-11 10:13:20 +09:00

24 lines
739 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->content_title = "관리자";
$this->individualStylesheets = [];
$this->individualScripts = [];
$this->helper = $this->getHelper();
}
}