2019-08-02 20:08:54 +02:00
|
|
|
<?php
|
2019-12-03 19:57:53 +01:00
|
|
|
|
2019-08-02 20:08:54 +02:00
|
|
|
declare(strict_types=1);
|
2019-12-03 19:57:53 +01:00
|
|
|
|
2019-08-02 20:08:54 +02:00
|
|
|
/**
|
2024-05-28 16:42:42 +02:00
|
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-08-02 20:08:54 +02:00
|
|
|
*/
|
|
|
|
namespace OCA\Files\Event;
|
|
|
|
|
|
|
|
use OCP\EventDispatcher\Event;
|
|
|
|
|
2020-08-10 14:24:24 +02:00
|
|
|
/**
|
2021-01-14 13:31:15 +01:00
|
|
|
* This event is triggered when the files app is rendered.
|
2020-08-10 14:24:24 +02:00
|
|
|
*
|
|
|
|
* @since 17.0.0
|
|
|
|
*/
|
2023-08-09 14:59:35 +02:00
|
|
|
class LoadAdditionalScriptsEvent extends Event {
|
|
|
|
}
|