2019-11-27 11:22:26 -05:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-11-27 11:22:26 -05:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-11-27 11:22:26 -05:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-11-27 11:22:26 -05:00
|
|
|
*/
|
|
|
|
|
namespace OCP\WorkflowEngine\EntityContext;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface IIcon
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @since 18.0.0
|
|
|
|
|
*/
|
|
|
|
|
interface IIcon {
|
|
|
|
|
/**
|
|
|
|
|
* returns a URL to an icon that is related to the entity, for instance
|
|
|
|
|
* a group icon for groups.
|
|
|
|
|
*
|
|
|
|
|
* @since 18.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function getIconUrl(): string;
|
|
|
|
|
}
|