uri_path .= 'part/'; // $this->view_path .= "part" . DIRECTORY_SEPARATOR; } protected function setOrderByForList() { //OrderBy 처리 $this->getService()->getModel()->orderBy('serviceinfo_uid', 'ASC', false); parent::setOrderByForList(); } protected function getResultPageByActon(string $action, string $message = MESSAGES["SUCCESS"]): RedirectResponse|string { switch ($action) { case 'index': case 'view': $this->getHelper()->setViewDatas($this->getViewDatas()); $result = view($this->view_path . 'popup' . DIRECTORY_SEPARATOR . $action, ['viewDatas' => $this->getViewDatas()]); break; default: $result = parent::getResultPageByActon($action, $message); break; } return $result; } }