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(): ServerService { if (!$this->_service) { $this->_service = new ServerService(); } return $this->_service; } public function getHelper(): ServerHelper { if (!$this->_helper) { $this->_helper = new ServerHelper(); } return $this->_helper; } //Index,FieldForm관련 protected function getResultSuccess(string $message = MESSAGES["SUCCESS"], ?string $actionTemplate = null): RedirectResponse|string { switch ($this->getAction()) { case 'index': case 'view': $result = parent::getResultSuccess($message, $this->request->getVar('ActionTemplate') ?? $actionTemplate ?? 'server'); break; default: $result = parent::getResultSuccess($message, $actionTemplate); break; } return $result; } //View부분 protected function view_process(mixed $entity): void { foreach (SERVICE_ITEM_TYPES as $item_type => $label) { $entity->setItemEntities( $item_type, $this->getService()->getEntities(['serviceinfo_code' => $entity->getPK(), 'item_type' => $item_type]) ); } //부모처리 parent::view_process($entity); } }