2011-10-03 21:27:10 +02:00
|
|
|
|
<style type="text/css">
|
|
|
|
|
#plupload_files input[type="file"] {
|
|
|
|
|
font-size: 200px !important;
|
|
|
|
|
}
|
2014-04-14 17:24:39 +02:00
|
|
|
|
</style>
|
2015-05-19 18:18:01 +02:00
|
|
|
|
<?php $upgradeLink = Application_Common_OsPath::getBaseDir() . "billing/upgrade"; ?>
|
2014-04-14 17:24:39 +02:00
|
|
|
|
<?php if ($this->quotaLimitReached) { ?>
|
|
|
|
|
<div class="errors quota-reached">
|
2015-05-19 18:18:01 +02:00
|
|
|
|
<?php printf(_pro("Disk quota exceeded. You cannot upload files until you %s upgrade your storage"),
|
|
|
|
|
"<a target=\"_parent\" href=$upgradeLink>");?></a>.
|
2014-04-14 17:24:39 +02:00
|
|
|
|
</div>
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
2015-08-10 20:17:16 +02:00
|
|
|
|
<!--
|
2014-04-14 17:24:39 +02:00
|
|
|
|
<form id="plupload_form" <?php if ($this->quotaLimitReached) { ?> class="hidden" <?php } ?>>
|
2014-10-08 17:46:08 +02:00
|
|
|
|
<?php echo $this->form->getElement('csrf') ?>
|
|
|
|
|
<div id="plupload_files"></div>
|
2011-04-18 17:02:09 +02:00
|
|
|
|
</form>
|
2015-08-10 20:17:16 +02:00
|
|
|
|
-->
|
|
|
|
|
<div id="upload_form" class="lib-content ui-widget ui-widget-content block-shadow padded <?php if ($this->quotaLimitReached) { ?> hidden <?php } ?>">
|
|
|
|
|
<H2>Upload Audio Files</H2>
|
|
|
|
|
<div>
|
|
|
|
|
<form action="/rest/media" method="post" id="add-media-dropzone" class="dropzone dz-clickable">
|
|
|
|
|
<?php echo $this->form->getElement('csrf') ?>
|
|
|
|
|
<div class="dz-message">
|
|
|
|
|
<?php echo _("Drop files here or click to browse your computer.") ?>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
<!--
|
|
|
|
|
<div id="filelist">Your browser doesn't have Flash, Silverlight or HTML5 support.</div>
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
|
<div id="container">
|
|
|
|
|
<a id="pickfiles" href="javascript:;">[Select files]</a>
|
|
|
|
|
<a id="uploadfiles" href="javascript:;">[Upload files]</a>
|
|
|
|
|
</div>
|
|
|
|
|
-->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2011-04-18 17:02:09 +02:00
|
|
|
|
<div id="plupload_error">
|
|
|
|
|
<table></table>
|
|
|
|
|
</div>
|
2014-03-21 18:22:00 +01:00
|
|
|
|
|
2015-08-10 20:17:16 +02:00
|
|
|
|
|
2015-08-14 14:30:52 +02:00
|
|
|
|
<div id="recent_uploads_wrapper" class="lib-content ui-widget ui-widget-content block-shadow">
|
2014-03-21 18:22:00 +01:00
|
|
|
|
<div id="recent_uploads" class="padded">
|
|
|
|
|
|
|
|
|
|
<div id="recent_uploads_filter">
|
|
|
|
|
<form>
|
2014-04-09 17:28:41 +02:00
|
|
|
|
<input type="radio" name="upload_status" id="upload_status_all" checked></input><label for="upload_status_all"><?php echo _("All")?></label>
|
|
|
|
|
<input type="radio" name="upload_status" id="upload_status_failed"></input><label for="upload_status_failed"><?php echo _("Failed")?></label>
|
|
|
|
|
<input type="radio" name="upload_status" id="upload_status_pending"></input><label for="upload_status_pending"><?php echo _("Pending")?></label>
|
2014-03-21 18:22:00 +01:00
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2014-04-09 17:28:41 +02:00
|
|
|
|
<H2><?php echo _("Recent Uploads")?></H2>
|
2015-08-10 18:23:22 +02:00
|
|
|
|
<table id="recent_uploads_table" class="datatable lib-content ui-widget ui-widget-content block-shadow alpha-block "
|
|
|
|
|
cellpadding="0" cellspacing="0"></table>
|
2014-03-21 18:22:00 +01:00
|
|
|
|
</div>
|
|
|
|
|
<div style="clear: both;"></div>
|
|
|
|
|
</div>
|