AutoCompleteEvent.php 2.2 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. * @deprecated Use {@see AutoCompleteFilterEvent} instead
  29. */
  30. class AutoCompleteEvent extends GenericEvent {
  31. /**
  32. * @param array $arguments
  33. * @since 16.0.0
  34. */
  35. public function __construct(array $arguments) {
  36. parent::__construct(null, $arguments);
  37. }
  38. /**
  39. * @since 16.0.0
  40. */
  41. public function getResults(): array {
  42. return $this->getArgument('results');
  43. }
  44. /**
  45. * @param array $results
  46. * @since 16.0.0
  47. */
  48. public function setResults(array $results): void {
  49. $this->setArgument('results', $results);
  50. }
  51. /**
  52. * @since 16.0.0
  53. */
  54. public function getSearchTerm(): string {
  55. return $this->getArgument('search');
  56. }
  57. /**
  58. * @return int[]
  59. * @since 16.0.0
  60. */
  61. public function getShareTypes(): array {
  62. return $this->getArgument('shareTypes');
  63. }
  64. /**
  65. * @since 16.0.0
  66. */
  67. public function getItemType(): string {
  68. return $this->getArgument('itemType');
  69. }
  70. /**
  71. * @since 16.0.0
  72. */
  73. public function getItemId(): string {
  74. return $this->getArgument('itemId');
  75. }
  76. /**
  77. * @since 16.0.0
  78. */
  79. public function getSorter(): string {
  80. return $this->getArgument('sorter');
  81. }
  82. /**
  83. * @since 16.0.0
  84. */
  85. public function getLimit(): int {
  86. return $this->getArgument('limit');
  87. }
  88. }