RenderReferenceEvent.php 432 B

1234567891011121314151617181920
  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\Reference;
  8. use OCP\EventDispatcher\Event;
  9. /**
  10. * Event that apps can emit on their page rendering to trigger loading of aditional
  11. * scripts for reference widget rendering
  12. *
  13. * @since 25.0.0
  14. */
  15. class RenderReferenceEvent extends Event {
  16. }