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