2014-09-30 09:23:16 -04:00
|
|
|
<?php
|
2014-10-15 05:58:44 -04:00
|
|
|
/** @var $l OC_L10N */
|
|
|
|
|
/** @var $_ array */
|
|
|
|
|
|
|
|
|
|
OCP\Util::addScript('files', 'file-upload');
|
|
|
|
|
OCP\Util::addStyle('files_sharing', 'public');
|
|
|
|
|
OCP\Util::addStyle('files_sharing', 'mobile');
|
|
|
|
|
OCP\Util::addScript('files_sharing', 'public');
|
|
|
|
|
OCP\Util::addScript('files', 'fileactions');
|
|
|
|
|
OCP\Util::addScript('files', 'jquery.iframe-transport');
|
|
|
|
|
OCP\Util::addScript('files', 'jquery.fileupload');
|
|
|
|
|
|
|
|
|
|
// JS required for folders
|
|
|
|
|
OCP\Util::addStyle('files', 'files');
|
|
|
|
|
OCP\Util::addStyle('files', 'upload');
|
|
|
|
|
OCP\Util::addScript('files', 'filesummary');
|
|
|
|
|
OCP\Util::addScript('files', 'breadcrumb');
|
|
|
|
|
OCP\Util::addScript('files', 'files');
|
|
|
|
|
OCP\Util::addScript('files', 'filelist');
|
|
|
|
|
OCP\Util::addscript('files', 'keyboardshortcuts');
|
|
|
|
|
|
2014-09-30 09:23:16 -04:00
|
|
|
$thumbSize=1024;
|
|
|
|
|
$previewSupported = OC\Preview::isMimeSupported($_['mimetype']) ? 'true' : 'false';
|
|
|
|
|
?>
|
2014-10-15 05:58:44 -04:00
|
|
|
|
2014-05-19 13:53:27 -04:00
|
|
|
<?php if ( \OC\Preview::isMimeSupported($_['mimetype'])): /* This enables preview images for links (e.g. on Facebook, Google+, ...)*/?>
|
|
|
|
|
<link rel="image_src" href="<?php p(OCP\Util::linkToRoute( 'core_ajax_public_preview', array('x' => $thumbSize, 'y' => $thumbSize, 'file' => $_['directory_path'], 't' => $_['dirToken']))); ?>" />
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
2013-06-25 06:24:14 -04:00
|
|
|
<div id="notification-container">
|
2013-07-05 09:07:05 -04:00
|
|
|
<div id="notification" style="display: none;"></div>
|
2013-06-25 06:24:14 -04:00
|
|
|
</div>
|
|
|
|
|
|
2013-10-08 11:19:58 -04:00
|
|
|
<input type="hidden" id="filesApp" name="filesApp" value="1">
|
2013-10-07 10:59:57 -04:00
|
|
|
<input type="hidden" id="isPublic" name="isPublic" value="1">
|
2013-02-27 15:37:14 -05:00
|
|
|
<input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir">
|
|
|
|
|
<input type="hidden" name="downloadURL" value="<?php p($_['downloadURL']) ?>" id="downloadURL">
|
2013-11-15 10:27:41 -05:00
|
|
|
<input type="hidden" name="sharingToken" value="<?php p($_['sharingToken']) ?>" id="sharingToken">
|
2013-02-27 15:37:14 -05:00
|
|
|
<input type="hidden" name="filename" value="<?php p($_['filename']) ?>" id="filename">
|
|
|
|
|
<input type="hidden" name="mimetype" value="<?php p($_['mimetype']) ?>" id="mimetype">
|
2014-09-30 09:23:16 -04:00
|
|
|
<input type="hidden" name="previewSupported" value="<?php p($previewSupported); ?>" id="previewSupported">
|
|
|
|
|
<input type="hidden" name="mimetypeIcon" value="<?php p(OC_Helper::mimetypeIcon($_['mimetype'])); ?>" id="mimetypeIcon">
|
|
|
|
|
|
|
|
|
|
|
2014-05-23 08:15:36 -04:00
|
|
|
<header><div id="header" class="<?php p((isset($_['folder']) ? 'share-folder' : 'share-file')) ?>">
|
2014-07-02 17:33:20 -04:00
|
|
|
<a href="<?php print_unescaped(link_to('', 'index.php')); ?>"
|
2014-10-15 05:58:44 -04:00
|
|
|
title="" id="owncloud">
|
2014-12-18 04:50:05 -05:00
|
|
|
<div class="logo-wide svg">
|
|
|
|
|
<h1 class="hidden-visually">
|
|
|
|
|
<?php p($theme->getName()); ?>
|
|
|
|
|
</h1>
|
|
|
|
|
</div>
|
2014-07-02 17:33:20 -04:00
|
|
|
</a>
|
2013-07-24 05:51:21 -04:00
|
|
|
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
|
2013-07-05 09:07:05 -04:00
|
|
|
<div class="header-right">
|
2014-05-14 07:29:03 -04:00
|
|
|
<span id="details">
|
2014-09-03 10:00:01 -04:00
|
|
|
<?php
|
|
|
|
|
if ($_['server2serversharing']) {
|
|
|
|
|
?>
|
|
|
|
|
<span id="save" data-protected="<?php p($_['protected']) ?>"
|
|
|
|
|
data-owner="<?php p($_['displayName']) ?>" data-name="<?php p($_['filename']) ?>">
|
2014-07-03 18:07:24 -04:00
|
|
|
<button id="save-button"><?php p($l->t('Add to your ownCloud')) ?></button>
|
2014-05-14 07:29:03 -04:00
|
|
|
<form class="save-form hidden" action="#">
|
2014-07-02 14:32:15 -04:00
|
|
|
<input type="text" id="remote_address" placeholder="example.com/owncloud"/>
|
2014-07-03 18:07:24 -04:00
|
|
|
<button id="save-button-confirm" class="icon-confirm svg"></button>
|
2014-05-14 07:29:03 -04:00
|
|
|
</form>
|
|
|
|
|
</span>
|
2014-09-03 10:00:01 -04:00
|
|
|
<?php } ?>
|
2014-05-14 07:29:03 -04:00
|
|
|
<a href="<?php p($_['downloadURL']); ?>" id="download" class="button">
|
|
|
|
|
<img class="svg" alt="" src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>"/>
|
2014-07-02 17:21:06 -04:00
|
|
|
<span id="download-text"><?php p($l->t('Download'))?></span>
|
2014-05-14 07:29:03 -04:00
|
|
|
</a>
|
|
|
|
|
</span>
|
2013-07-05 09:07:05 -04:00
|
|
|
</div>
|
2014-10-15 05:58:44 -04:00
|
|
|
</div></header>
|
2013-06-25 06:24:14 -04:00
|
|
|
<div id="content">
|
2013-07-05 09:07:05 -04:00
|
|
|
<div id="preview">
|
|
|
|
|
<?php if (isset($_['folder'])): ?>
|
|
|
|
|
<?php print_unescaped($_['folder']); ?>
|
2013-03-14 15:10:21 -04:00
|
|
|
<?php else: ?>
|
2014-09-30 09:23:16 -04:00
|
|
|
<?php if (substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'video'): ?>
|
2013-07-05 09:07:05 -04:00
|
|
|
<div id="imgframe">
|
2014-07-30 11:06:41 -04:00
|
|
|
<video tabindex="0" controls="" preload="none">
|
2013-07-05 09:07:05 -04:00
|
|
|
<source src="<?php p($_['downloadURL']); ?>" type="<?php p($_['mimetype']); ?>" />
|
|
|
|
|
</video>
|
|
|
|
|
</div>
|
2014-01-23 14:15:10 -05:00
|
|
|
<?php else: ?>
|
2014-09-30 09:23:16 -04:00
|
|
|
<!-- Preview frame is filled via JS to support SVG images for modern browsers -->
|
|
|
|
|
<div id="imgframe"></div>
|
2013-07-05 09:07:05 -04:00
|
|
|
<?php endif; ?>
|
2014-01-16 09:28:39 -05:00
|
|
|
<div class="directDownload">
|
|
|
|
|
<a href="<?php p($_['downloadURL']); ?>" id="download" class="button">
|
|
|
|
|
<img class="svg" alt="" src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>"/>
|
2014-10-15 20:59:07 -04:00
|
|
|
<?php p($l->t('Download %s', array($_['filename'])))?> (<?php p($_['fileSize']) ?>)
|
2014-01-15 09:31:27 -05:00
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="directLink">
|
|
|
|
|
<label for="directLink"><?php p($l->t('Direct link')) ?></label>
|
|
|
|
|
<input id="directLink" type="text" readonly value="<?php p($_['downloadURL']); ?>">
|
|
|
|
|
</div>
|
2013-03-14 15:10:21 -04:00
|
|
|
<?php endif; ?>
|
2013-07-05 09:07:05 -04:00
|
|
|
</div>
|
2014-01-23 14:15:10 -05:00
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<footer>
|
|
|
|
|
<p class="info">
|
|
|
|
|
<?php print_unescaped($theme->getLongFooter()); ?>
|
|
|
|
|
</p>
|
|
|
|
|
</footer>
|