direction; } /** * @return string */ public function getField(): string { return $this->field; } /** * @return string * @since 28.0.0 */ public function getExtra(): string { return $this->extra; } public function sortFileInfo(FileInfo $a, FileInfo $b): int { $cmp = $this->sortFileInfoNoDirection($a, $b); return $cmp * ($this->direction === ISearchOrder::DIRECTION_ASCENDING ? 1 : -1); } private function sortFileInfoNoDirection(FileInfo $a, FileInfo $b): int { switch ($this->field) { case 'name': return $a->getName() <=> $b->getName(); case 'mimetype': return $a->getMimetype() <=> $b->getMimetype(); case 'mtime': return $a->getMtime() <=> $b->getMtime(); case 'size': return $a->getSize() <=> $b->getSize(); case 'fileid': return $a->getId() <=> $b->getId(); case 'permissions': return $a->getPermissions() <=> $b->getPermissions(); default: return 0; } } }