dbmsv2/app/Controllers/Admin/Equipment/SwitchController.php
2025-09-23 17:42:41 +09:00

33 lines
1.0 KiB
PHP

<?php
namespace App\Controllers\Admin\Equipment;
use App\Entities\Equipment\SwitchEntity;
use App\Helpers\Equipment\SwitchHelper;
use App\Services\Equipment\SwitchService;
use CodeIgniter\HTTP\RequestInterface;
use CodeIgniter\HTTP\ResponseInterface;
use Psr\Log\LoggerInterface;
class SwitchController extends EquipmentController
{
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
{
parent::initController($request, $response, $logger);
$this->content_title = lang("{$this->getService()->getClassName()}.title");
$this->class_path .= $this->getService()->getClassName();
$this->uri_path .= strtolower($this->getService()->getClassName('/')) . '/';
// $this->view_path .= strtolower($this->getService()->getClassName()) . DIRECTORY_SEPARATOR;
}
public function getService(): SwitchService
{
if (!$this->_service) {
$this->_service = new SwitchService();
}
return $this->_service;
}
//Index,FieldForm관
}