nextcloud/apps/files_sharing/templates/public.php

95 lines
3.8 KiB
PHP
Raw Normal View History

2013-06-25 14:24:14 +04:00
<div id="notification-container">
<div id="notification" style="display: none;"></div>
</div>
2013-02-28 00:37:14 +04:00
<input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir">
<input type="hidden" name="downloadURL" value="<?php p($_['downloadURL']) ?>" id="downloadURL">
<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">
2013-02-28 00:37:14 +04:00
<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="ownCloud" /></a>
2013-06-28 12:06:57 +04:00
<div id="logo-claim" style="display:none;"><?php p(OC_Defaults::getLogoClaim()); ?></div>
<div class="header-right">
2012-09-21 13:48:20 +04:00
<?php if (isset($_['folder'])): ?>
2013-02-28 00:37:14 +04:00
<span id="details"><?php p($l->t('%s shared the folder %s with you',
array($_['displayName'], $_['fileTarget']))) ?></span>
2012-09-21 13:48:20 +04:00
<?php else: ?>
2013-02-28 00:37:14 +04:00
<span id="details"><?php p($l->t('%s shared the file %s with you',
array($_['displayName'], $_['fileTarget']))) ?></span>
2012-09-21 13:48:20 +04:00
<?php endif; ?>
2013-06-25 14:24:14 +04:00
2012-09-19 07:56:00 +04:00
<?php if (!isset($_['folder']) || $_['allowZipDownload']): ?>
2013-02-28 00:37:14 +04:00
<a href="<?php p($_['downloadURL']); ?>" class="button" id="download"><img
class="svg" alt="Download" src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>"
2013-06-25 14:24:14 +04:00
/><span><?php p($l->t('Download'))?></span></a>
2012-09-19 07:56:00 +04:00
<?php endif; ?>
2013-06-25 14:24:14 +04:00
<?php if ($_['allowPublicUploadEnabled']):?>
<input type="hidden" id="publicUploadRequestToken" name="requesttoken" value="<?php p($_['requesttoken']) ?>" />
<input type="hidden" id="dirToken" name="dirToken" value="<?php p($_['dirToken']) ?>" />
<input type="hidden" id="uploadMaxFilesize" name="uploadMaxFilesize" value="<?php p($_['uploadMaxFilesize']) ?>" />
<input type="hidden" id="uploadMaxHumanFilesize" name="uploadMaxHumanFilesize" value="<?php p($_['uploadMaxHumanFilesize']) ?>" />
<input type="hidden" id="directory_path" name="directory_path" value="<?php p($_['directory_path']) ?>" />
<div id="data-upload-form" class="button">
<input id="file_upload_start" type="file" name="files[]" data-url="<?php print_unescaped(OCP\Util::linkTo('files', 'ajax/upload.php')); ?>" multiple>
<a href="#" id="publicUploadButtonMock" class="svg">
<span><?php p($l->t('Upload'))?></span>
</a>
</div>
</div>
<div id="additional_controls" style="display:none">
<div id="uploadprogresswrapper">
<div id="uploadprogressbar"></div>
<input id="cancel_upload_button" type="button" class="stop" style="display:none"
value="<?php p($l->t('Cancel upload'));?>"
/>
</div>
<?php endif; ?>
</div>
</div></header>
2013-06-25 14:24:14 +04:00
<div id="content">
2012-08-27 23:46:05 +04:00
<div id="preview">
2012-09-19 07:56:00 +04:00
<?php if (isset($_['folder'])): ?>
2013-02-28 00:37:14 +04:00
<?php print_unescaped($_['folder']); ?>
2012-09-19 07:56:00 +04:00
<?php else: ?>
2012-10-23 10:35:54 +04:00
<?php if (substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'image'): ?>
2012-09-19 23:46:39 +04:00
<div id="imgframe">
2013-02-28 00:37:14 +04:00
<img src="<?php p($_['downloadURL']); ?>" />
2012-09-19 23:46:39 +04:00
</div>
<?php elseif (substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'video'): ?>
<div id="imgframe">
<video tabindex="0" controls="" autoplay="">
<source src="<?php p($_['downloadURL']); ?>" type="<?php p($_['mimetype']); ?>" />
</video>
</div>
<?php else: ?>
2012-09-19 07:56:00 +04:00
<ul id="noPreview">
<li class="error">
2013-02-28 00:37:14 +04:00
<?php p($l->t('No preview available for').' '.$_['fileTarget']); ?><br />
<a href="<?php p($_['downloadURL']); ?>" id="download"><img class="svg" alt="Download"
src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>"
/><?php p($l->t('Download'))?></a>
2012-09-19 07:56:00 +04:00
</li>
</ul>
<?php endif; ?>
2012-08-27 23:46:05 +04:00
<?php endif; ?>
</div>
2013-06-13 18:10:33 +04:00
<footer>
<p class="info">
<?php print_unescaped(OC_Defaults::getLongFooter()); ?>
2013-06-13 18:10:33 +04:00
</p>
</footer>