From c448154e0880ed204ae5cdc91179d5cf681814ea Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Thu, 8 Sep 2022 11:48:00 +0200 Subject: [PATCH] add IItemOptionWidget to define some item-related parameters, only getItemIconsRound() for now Signed-off-by: Julien Veyssier --- .../lib/Controller/DashboardApiController.php | 2 + lib/public/Dashboard/IItemOptionWidget.php | 37 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 lib/public/Dashboard/IItemOptionWidget.php diff --git a/apps/dashboard/lib/Controller/DashboardApiController.php b/apps/dashboard/lib/Controller/DashboardApiController.php index 9f9872dc91613..b0859a088c649 100644 --- a/apps/dashboard/lib/Controller/DashboardApiController.php +++ b/apps/dashboard/lib/Controller/DashboardApiController.php @@ -30,6 +30,7 @@ use OCP\AppFramework\Http\DataResponse; use OCP\Dashboard\IButtonWidget; use OCP\Dashboard\IIconWidget; +use OCP\Dashboard\IItemOptionWidget; use OCP\Dashboard\IManager; use OCP\Dashboard\IWidget; use OCP\Dashboard\Model\WidgetButton; @@ -112,6 +113,7 @@ public function getWidgets(): DataResponse { 'icon_class' => $widget->getIconClass(), 'icon_url' => ($widget instanceof IIconWidget) ? $widget->getIconUrl() : '', 'widget_url' => $widget->getUrl(), + 'item_icons_round' => ($widget instanceof IItemOptionWidget) ? $widget->getItemIconsRound() : false, ]; if ($widget instanceof IButtonWidget) { $data += [ diff --git a/lib/public/Dashboard/IItemOptionWidget.php b/lib/public/Dashboard/IItemOptionWidget.php new file mode 100644 index 0000000000000..9826286b0418f --- /dev/null +++ b/lib/public/Dashboard/IItemOptionWidget.php @@ -0,0 +1,37 @@ + + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ +namespace OCP\Dashboard; + +/** + * Allow getting widget options + * + * @since 25.0.0 + */ +interface IItemOptionWidget extends IWidget { + /** + * Should the item icons be rendered round (or raw/square) by the clients? + * + * @return bool + */ + public function getItemIconsRound(): bool; +}