2018-01-25 20:53:09 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>
|
|
|
|
*
|
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
2018-04-05 12:09:19 +03:00
|
|
|
* 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.
|
2018-01-25 20:53:09 +03:00
|
|
|
*
|
2018-04-05 12:09:19 +03:00
|
|
|
* 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.
|
2018-01-25 20:53:09 +03:00
|
|
|
*
|
2018-04-05 12:09:19 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-01-25 20:53:09 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-04-05 12:09:19 +03:00
|
|
|
namespace OCP\AppFramework\Http\Template;
|
2018-01-25 20:53:09 +03:00
|
|
|
|
|
|
|
use OCP\AppFramework\Http\Template\SimpleMenuAction;
|
|
|
|
use OCP\Util;
|
2018-04-05 14:18:17 +03:00
|
|
|
/**
|
|
|
|
* Class LinkMenuAction
|
|
|
|
*
|
|
|
|
* @package OCP\AppFramework\Http\Template
|
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
2018-01-25 20:53:09 +03:00
|
|
|
class ExternalShareMenuAction extends SimpleMenuAction {
|
|
|
|
|
2018-02-09 11:20:11 +03:00
|
|
|
/** @var string */
|
2018-01-25 20:53:09 +03:00
|
|
|
private $owner;
|
2018-02-09 11:20:11 +03:00
|
|
|
|
|
|
|
/** @var string */
|
2018-01-25 20:53:09 +03:00
|
|
|
private $displayname;
|
2018-02-09 11:20:11 +03:00
|
|
|
|
|
|
|
/** @var string */
|
2018-01-25 20:53:09 +03:00
|
|
|
private $shareName;
|
|
|
|
|
2018-02-09 11:20:11 +03:00
|
|
|
/**
|
|
|
|
* ExternalShareMenuAction constructor.
|
|
|
|
*
|
|
|
|
* @param string $label
|
|
|
|
* @param string $icon
|
|
|
|
* @param string $owner
|
|
|
|
* @param string $displayname
|
|
|
|
* @param string $shareName
|
2018-04-05 14:18:17 +03:00
|
|
|
* @since 14.0.0
|
2018-02-09 11:20:11 +03:00
|
|
|
*/
|
|
|
|
public function __construct(string $label, string $icon, string $owner, string $displayname, string $shareName) {
|
2018-01-25 20:53:09 +03:00
|
|
|
parent::__construct('save', $label, $icon);
|
|
|
|
$this->owner = $owner;
|
|
|
|
$this->displayname = $displayname;
|
|
|
|
$this->shareName = $shareName;
|
|
|
|
}
|
|
|
|
|
2018-04-05 14:18:17 +03:00
|
|
|
/**
|
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
2018-01-25 20:53:09 +03:00
|
|
|
public function render(): string {
|
|
|
|
return '<li>' .
|
2018-04-05 14:11:55 +03:00
|
|
|
'<a id="save-external-share" data-protected="false" data-owner-display-name="' . Util::sanitizeHTML($this->displayname) . '" data-owner="' . Util::sanitizeHTML($this->owner) . '" data-name="' . Util::sanitizeHTML($this->shareName) . '">' .
|
2018-01-25 20:53:09 +03:00
|
|
|
'<span class="icon ' . Util::sanitizeHTML($this->getIcon()) . '"></span>' .
|
2018-03-07 17:28:03 +03:00
|
|
|
'<label for="remote_address">' . Util::sanitizeHTML($this->getLabel()) . '</label>' .
|
2018-04-05 14:11:55 +03:00
|
|
|
'<form class="save-form hidden" action="#">' .
|
2018-01-25 20:53:09 +03:00
|
|
|
'<input type="text" id="remote_address" placeholder="user@yourNextcloud.org">' .
|
2018-03-06 12:21:35 +03:00
|
|
|
'<input type="submit" value=" " id="save-button-confirm" class="icon-confirm" disabled="disabled"></button>' .
|
2018-01-25 20:53:09 +03:00
|
|
|
'</form>' .
|
2018-04-05 14:11:55 +03:00
|
|
|
'</a>' .
|
2018-01-25 20:53:09 +03:00
|
|
|
'</li>';
|
|
|
|
}
|
2018-03-06 12:21:35 +03:00
|
|
|
}
|