diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-01-29 16:52:30 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-01-29 16:52:30 +0100 |
commit | 7655728ddf4edcb02eb2e997e0d16567ee238460 (patch) | |
tree | d7229f7a94ccb992883e9b2795e62ffd09c0d0ed | |
parent | 5a869732d1e3bff7e2c1afdb7b15c77c31b4b1cc (diff) | |
download | nextcloud-server-7655728ddf4edcb02eb2e997e0d16567ee238460.tar.gz nextcloud-server-7655728ddf4edcb02eb2e997e0d16567ee238460.zip |
- adding class to header div: share-folder or share-file
- for supported previews are shown with a size of 500px; icons with a size of 128px
-rw-r--r-- | apps/files_sharing/templates/public.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 5804f606d9f..3ddaf4446df 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -9,7 +9,7 @@ <input type="hidden" name="sharingToken" value="<?php p($_['sharingToken']) ?>" id="sharingToken"> <input type="hidden" name="filename" value="<?php p($_['filename']) ?>" id="filename"> <input type="hidden" name="mimetype" value="<?php p($_['mimetype']) ?>" id="mimetype"> -<header><div id="header" class="icon icon-noise"> +<header><div id="header" class="icon icon-noise <?php p((isset($_['folder']) ? 'share-folder' : 'share-file')) ?>"> <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"><img class="svg" src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="<?php p($theme->getName()); ?>" /></a> <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> @@ -34,7 +34,8 @@ </div> <?php else: ?> <div id="imgframe"> - <img src="<?php p(OCP\Util::linkToRoute( 'core_ajax_public_preview', array('x' => 128, 'y' => 128, 'file' => urlencode($_['directory_path']), 't' => $_['dirToken']))); ?>" class="publicpreview"/> + <?php $size = \OC\Preview::isMimeSupported($_['mimetype']) ? 500 : 128 ?> + <img src="<?php p(OCP\Util::linkToRoute( 'core_ajax_public_preview', array('x' => $size, 'y' => $size, 'file' => urlencode($_['directory_path']), 't' => $_['dirToken']))); ?>" class="publicpreview"/> </div> <?php endif; ?> <div class="directDownload"> |