table}.{$field}]"; break; case $this->getTitleField(): $rule = "required|trim|string"; break; case "site": $rule = "required|trim|string"; break; case "email": $rule = "required|trim|valid_email"; break; case "detail": $rule = "required|trim|string"; break; default: $rule = parent::getFormFieldRule($action, $field); break; } return $rule; } //List 검색용 // public function setList_WordFilter(string $word): void // { // $this->orLike(self::TABLE . '.id', $word, 'both'); // $this->orLike(self::TABLE . "." . self::TITLE, $word, 'both'); // $this->orLike(self::TABLE . '.email', $word, 'both'); // } }