addClassName('MyLog'); if ($this->getMyAuth()->isLoggedIn()) { $this->_myAuthUID = $this->getMyAuth()->getUIDByAuthInfo(); } } final public function getMyAuth(): mixed { if (!$this->_myAuth) { $this->_myAuth = service('myauth'); } return $this->_myAuth; } public function getFormFields(): array { return [ "title", "content", "status", ]; } public function getFormFilters(): array { return [ 'user_uid', 'status' ]; } public function getBatchjobFields(): array { return ['status']; } //기본 기능부분 //FieldForm관련용 //List 검색용 public function index_condition_filterWord(string $word): void { $this->getModel()->orLike($this->getModel()::TABLE . "." . $this->getModel()::TITLE, $word, 'both'); $this->getModel()->orLike($this->getModel()::TABLE . '.content', $word, 'both'); } protected function create_process(array $formDatas): MyLogEntity { //관리자(작업자정보) 등록 $formDatas['user_uid'] = $this->getMyAuth()->getUIDByAuthInfo(); return parent::create_process($formDatas); } //List 검색용 //OrderBy 처리 final public function setOrderBy(mixed $field = null, mixed $value = null): void { $this->getModel()->orderBy('uid DESC'); parent::setOrderBy($field, $value); } }