AutoCompleteEvent.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2019 Joas Schilling <coding@schilljs.com>
  5. *
  6. * @author Joas Schilling <coding@schilljs.com>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. namespace OCP\Collaboration\AutoComplete;
  25. use OCP\EventDispatcher\GenericEvent;
  26. /**
  27. * @since 16.0.0
  28. */
  29. class AutoCompleteEvent extends GenericEvent {
  30. /**
  31. * @param array $arguments
  32. * @since 16.0.0
  33. */
  34. public function __construct(array $arguments) {
  35. parent::__construct(null, $arguments);
  36. }
  37. /**
  38. * @since 16.0.0
  39. */
  40. public function getResults(): array {
  41. return $this->getArgument('results');
  42. }
  43. /**
  44. * @param array $results
  45. * @since 16.0.0
  46. */
  47. public function setResults(array $results): void {
  48. $this->setArgument('results', $results);
  49. }
  50. /**
  51. * @since 16.0.0
  52. */
  53. public function getSearchTerm(): string {
  54. return $this->getArgument('search');
  55. }
  56. /**
  57. * @return int[]
  58. * @since 16.0.0
  59. */
  60. public function getShareTypes(): array {
  61. return $this->getArgument('shareTypes');
  62. }
  63. /**
  64. * @since 16.0.0
  65. */
  66. public function getItemType(): string {
  67. return $this->getArgument('itemType');
  68. }
  69. /**
  70. * @since 16.0.0
  71. */
  72. public function getItemId(): string {
  73. return $this->getArgument('itemId');
  74. }
  75. /**
  76. * @since 16.0.0
  77. */
  78. public function getSorter(): string {
  79. return $this->getArgument('sorter');
  80. }
  81. /**
  82. * @since 16.0.0
  83. */
  84. public function getLimit(): int {
  85. return $this->getArgument('limit');
  86. }
  87. }