diff options
Diffstat (limited to 'lib/public/AppFramework/Http/Template/ExternalShareMenuAction.php')
-rw-r--r-- | lib/public/AppFramework/Http/Template/ExternalShareMenuAction.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/public/AppFramework/Http/Template/ExternalShareMenuAction.php b/lib/public/AppFramework/Http/Template/ExternalShareMenuAction.php new file mode 100644 index 00000000000..281bb559a10 --- /dev/null +++ b/lib/public/AppFramework/Http/Template/ExternalShareMenuAction.php @@ -0,0 +1,29 @@ +<?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 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); + } +} |