LoadAdditionalScriptsEvent.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>
  5. *
  6. * @author John Molakvoæ <skjnldsv@protonmail.com>
  7. * @author Morris Jobke <hey@morrisjobke.de>
  8. * @author Roeland Jago Douma <roeland@famdouma.nl>
  9. *
  10. * @license GNU AGPL version 3 or any later version
  11. *
  12. * This program is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License as
  14. * published by the Free Software Foundation, either version 3 of the
  15. * License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. *
  25. */
  26. namespace OCA\Files\Event;
  27. use OCP\EventDispatcher\Event;
  28. /**
  29. * This event is triggered when the files app is rendered.
  30. * It can be used to add additional scripts to the files app.
  31. *
  32. * @since 17.0.0
  33. */
  34. class LoadAdditionalScriptsEvent extends Event {
  35. private $hiddenFields = [];
  36. public function addHiddenField(string $name, string $value): void {
  37. $this->hiddenFields[$name] = $value;
  38. }
  39. public function getHiddenFields(): array {
  40. return $this->hiddenFields;
  41. }
  42. }