0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-15 16:55:23 +00:00
nextcloud_server/lib/public/Dashboard/IManager.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
504 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\Dashboard;
/**
* Interface IManager
*
* @since 20.0.0
*/
interface IManager {
/**
* @param string $widgetClass
* @since 20.0.0
*/
public function lazyRegisterWidget(string $widgetClass, string $appId): void;
/**
* @since 20.0.0
*
* @return array<string, IWidget>
*/
public function getWidgets(): array;
}