f7cloud_client/lib/public/AppFramework/Http/Template/ExternalShareMenuAction.php
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

30 lines
774 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2018 F7cloud GmbH and F7cloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\AppFramework\Http\Template;
/**
* Class LinkMenuAction
*
* @since 14.0.0
*/
class ExternalShareMenuAction extends SimpleMenuAction {
/**
* ExternalShareMenuAction constructor.
*
* @param string $label Translated label
* @param string $icon Icon CSS class
* @param string $owner Owner user ID (unused)
* @param string $displayname Display name of the owner (unused)
* @param string $shareName Name of the share (unused)
* @since 14.0.0
*/
public function __construct(string $label, string $icon, string $owner, string $displayname, string $shareName) {
parent::__construct('save', $label, $icon);
}
}