show note on public link page

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
pull/10218/head
Bjoern Schiessle 8 years ago committed by John Molakvoæ (skjnldsv)
parent 73b88deeb8
commit 4f59c8e8ae
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
  1. 5
      apps/files_sharing/css/public.scss
  2. 1
      apps/files_sharing/lib/Controller/ShareController.php
  3. 5
      apps/files_sharing/templates/public.php

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

@ -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();

@ -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']); ?>

Loading…
Cancel
Save