2022-09-01 14:06:41 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2022-09-01 14:06:41 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace OCP\Collaboration\Reference;
|
|
|
|
|
|
|
|
|
|
use OCP\EventDispatcher\Event;
|
|
|
|
|
|
|
|
|
|
/**
|
2024-07-23 12:49:26 -04:00
|
|
|
* Event emitted when apps might render references like link previews or smart picker widgets.
|
|
|
|
|
*
|
|
|
|
|
* This can be used to inject scripts for extending that.
|
|
|
|
|
* Further details can be found in the :ref:`Reference providers` deep dive.
|
2022-09-01 14:06:41 -04:00
|
|
|
*
|
|
|
|
|
* @since 25.0.0
|
|
|
|
|
*/
|
|
|
|
|
class RenderReferenceEvent extends Event {
|
|
|
|
|
}
|