You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.4 KiB

3 years ago
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 Robin Appelman <robin@icewind.nl>
  4. *
  5. * @author Robin Appelman <robin@icewind.nl>
  6. *
  7. * @license GNU AGPL version 3 or any later version
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as
  11. * published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. namespace OC\Files\Search;
  24. use OCP\Files\Search\ISearchOrder;
  25. class SearchOrder implements ISearchOrder {
  26. /** @var string */
  27. private $direction;
  28. /** @var string */
  29. private $field;
  30. /**
  31. * SearchOrder constructor.
  32. *
  33. * @param string $direction
  34. * @param string $field
  35. */
  36. public function __construct($direction, $field) {
  37. $this->direction = $direction;
  38. $this->field = $field;
  39. }
  40. /**
  41. * @return string
  42. */
  43. public function getDirection() {
  44. return $this->direction;
  45. }
  46. /**
  47. * @return string
  48. */
  49. public function getField() {
  50. return $this->field;
  51. }
  52. }