uri_path .= strtolower($this->getService()->getClassName()) . '/'; $this->class_path = $this->getService()->getClassPath(); $this->title = lang("{$this->getService()->getClassPath()}.title");; } final public function getService(): Service { if (!$this->_service) { $this->_service = new Service($this->request); } return $this->_service; } //로그인처리 protected function login_process(): Entity { $this->init(__FUNCTION__); $this->formDatas = $this->doValidate($this->action, $this->fields); return $this->getService()->login($this->getService()->checkUser($this->formDatas)); } }