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(): ServiceHistoryService { if (!$this->_service) { $this->_service = new ServiceHistoryService($this->request); } return $this->_service; } public function getHelper(): ServiceHistoryHelper { if (!$this->_helper) { $this->_helper = new ServiceHistoryHelper($this->request); } return $this->_helper; } public function getServiceService(): ServiceService { if (!$this->_serviceService) { $this->_serviceService = new ServiceService($this->request); } return $this->_serviceService; } protected function getFormFieldOption(string $field, array $options = []): array { switch ($field) { case 'serviceinfo_uid': foreach ($this->getServiceService()->getEntities() as $entity) { $options[$entity->getPK()] = $entity->getTitle(); } break; default: $options = parent::getFormFieldOption($field, $options); break; } return $options; } protected function getResultSuccess(string $message = MESSAGES["SUCCESS"], ?string $actionTemplate = null): RedirectResponse|string { switch ($this->getAction()) { case 'index': $result = parent::getResultSuccess($message, $this->request->getVar('ActionTemplate') ?? 'popup'); break; default: $result = parent::getResultSuccess($message, $actionTemplate); break; } return $result; } //Index,FieldForm관련 }