2020-06-18 19:16:53 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2020-08-24 08:54:25 -04:00
|
|
|
|
2020-06-18 19:16:53 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-06-18 19:16:53 -04:00
|
|
|
*/
|
2026-05-28 08:54:31 -04:00
|
|
|
|
2020-06-18 19:16:53 -04:00
|
|
|
namespace OCP\WorkflowEngine\Events;
|
|
|
|
|
|
|
|
|
|
use OCP\EventDispatcher\Event;
|
|
|
|
|
|
|
|
|
|
/**
|
2020-08-10 08:24:24 -04:00
|
|
|
* Emitted when the workflow engine settings page is loaded.
|
|
|
|
|
*
|
2020-06-18 19:16:53 -04:00
|
|
|
* @since 20.0.0
|
|
|
|
|
*/
|
|
|
|
|
class LoadSettingsScriptsEvent extends Event {
|
|
|
|
|
}
|