show note on public link page

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
Bjoern Schiessle 2018-07-12 16:58:36 +02:00 committed by John Molakvoæ (skjnldsv)
parent 73b88deeb8
commit 4f59c8e8ae
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
3 changed files with 11 additions and 0 deletions

View File

@ -169,3 +169,8 @@ thead {
opacity: .57;
margin-top: 10px;
}
#note {
text-align: center;
padding: 10px;
}

View File

@ -262,6 +262,7 @@ class ShareController extends AuthPublicShareController {
$shareTmpl['owner'] = $share->getShareOwner();
$shareTmpl['filename'] = $share->getNode()->getName();
$shareTmpl['directory_path'] = $share->getTarget();
$shareTmpl['note'] = $share->getNote();
$shareTmpl['mimetype'] = $share->getNode()->getMimetype();
$shareTmpl['previewSupported'] = $this->previewManager->isMimeSupported($share->getNode()->getMimetype());
$shareTmpl['dirToken'] = $this->getToken();

View File

@ -31,6 +31,11 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
<input type="hidden" name="maxSizeAnimateGif" value="<?php p($_['maxSizeAnimateGif']); ?>" id="maxSizeAnimateGif">
<?php if (!isset($_['hideFileList']) || (isset($_['hideFileList']) && $_['hideFileList'] === false)) { ?>
<div id="files-public-content">
<?php if (isset($_['note']) && $_['note'] !== '') : ?>
<div id="note">
<?php p($l->t('Note: ')); p($_['note']); ?>
</div>
<?php endif; ?>
<div id="preview">
<?php if (isset($_['folder'])): ?>
<?php print_unescaped($_['folder']); ?>