LoadAdditionalScriptsEvent.php 601 B

1234567891011121314151617181920212223
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\Collaboration\Resources;
  8. use OCP\EventDispatcher\Event;
  9. /**
  10. * This event is used by apps to register their own frontend scripts for integrating
  11. * projects in their app. Apps also need to dispatch the event in order to load
  12. * scripts during page load
  13. *
  14. * @see https://docs.nextcloud.com/server/latest/developer_manual/digging_deeper/projects.html
  15. * @since 25.0.0
  16. */
  17. class LoadAdditionalScriptsEvent extends Event {
  18. }