blob: fa8d6bc36a6516c939fe57ab67c78bd6e131639c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\Dashboard;
use OCP\Dashboard\Model\WidgetButton;
/**
* Adds a button to the dashboard api representation
*
* @since 25.0.0
*/
interface IButtonWidget extends IWidget {
/**
* Get the buttons to show on the widget
*
* @param string $userId
* @return WidgetButton[]
* @since 25.0.0
*/
public function getWidgetButtons(string $userId): array;
}
|