0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-17 19:52:39 +00:00
nextcloud_server/lib/public/AppFramework/Http/Template/LinkMenuAction.php

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

26 lines
552 B
PHP
Raw Normal View History

<?php
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\AppFramework\Http\Template;
/**
* Class LinkMenuAction
*
* @since 14.0.0
*/
class LinkMenuAction extends SimpleMenuAction {
/**
* LinkMenuAction constructor.
*
* @param string $label
* @param string $icon
* @param string $link
* @since 14.0.0
*/
public function __construct(string $label, string $icon, string $link) {
parent::__construct('directLink', $label, $icon, $link);
}
}