2013-05-07 10:34:09 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2013-05-07 10:34:09 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2013-05-07 10:34:09 -04:00
|
|
|
*/
|
|
|
|
|
namespace OC\Hooks;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class Emitter
|
|
|
|
|
*
|
|
|
|
|
* interface for all classes that are able to emit events
|
|
|
|
|
*
|
|
|
|
|
* @package OC\Hooks
|
2019-12-11 04:04:36 -05:00
|
|
|
* @deprecated 18.0.0 use events and the \OCP\EventDispatcher\IEventDispatcher service
|
2013-05-07 10:34:09 -04:00
|
|
|
*/
|
|
|
|
|
interface Emitter {
|
|
|
|
|
/**
|
|
|
|
|
* @param string $scope
|
|
|
|
|
* @param string $method
|
|
|
|
|
* @param callable $callback
|
2014-02-06 10:30:58 -05:00
|
|
|
* @return void
|
2020-10-28 17:27:27 -04:00
|
|
|
* @deprecated 18.0.0 use \OCP\EventDispatcher\IEventDispatcher::addListener
|
2013-05-07 10:34:09 -04:00
|
|
|
*/
|
2015-05-08 08:27:22 -04:00
|
|
|
public function listen($scope, $method, callable $callback);
|
2013-05-07 10:34:09 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $scope optional
|
|
|
|
|
* @param string $method optional
|
|
|
|
|
* @param callable $callback optional
|
2014-02-06 10:30:58 -05:00
|
|
|
* @return void
|
2020-10-28 17:27:27 -04:00
|
|
|
* @deprecated 18.0.0 use \OCP\EventDispatcher\IEventDispatcher::removeListener
|
2013-05-07 10:34:09 -04:00
|
|
|
*/
|
2024-03-28 11:13:19 -04:00
|
|
|
public function removeListener($scope = null, $method = null, ?callable $callback = null);
|
2013-05-07 10:34:09 -04:00
|
|
|
}
|