+ <div>
+ <p><?php echo t('Delete link') ?>:</p>
+ <p><a id="delete_link" href=""></a></p>
+ </div>
+
+ <div id="validity">
+ <p><?php echo t('This file is valid until the following date'); ?>:</p>
+ <p id="date"></p>
+ </div>
+</div>
+
+<div id="uploading">
+ <p>
+ <?php echo t('Uploading ...'); ?>
+ <div id="uploaded_percentage"></div>
+ <div id="uploaded_speed"></div>
+ <div id="uploaded_time"></div>
+ </p>
+</div>
+
+<div id="error_pop" class="error">
+</div>
+
+<div id="upload">
+<fieldset>
+ <legend>
+ <?php echo t('Select a file'); ?>
+ </legend>
+ <p>
+ <input type="file" id="file_select" size="30"
+ onchange="control_selected_file_size(<?php echo $cfg['maximal_upload_size'] ?>, '<?php echo t('File is too big') . ', ' . t('File size is limited to') . " " . $cfg['maximal_upload_size'] . " MB"; ?>')"/>
+ </p>
+
+ <div id="options">
+ <table id="option_table">
+ <tr>
+ <td><?php echo t('One time download'); ?>:</td>
+ <td><input type="checkbox" id="one_time_download" /></td>
+ </tr>
+ <tr>
+ <td><label for="input_key"><?php echo t('Password') . ':'; ?></label></td>
+ <td><input type="text" name="key" id="input_key" /></td>
+ </tr>
+ <tr>
+ <td><label for="select_time"><?php echo t('Time limit') . ':'; ?></label></td>
+ <td><select name="time" id="select_time">
+ <?php
+ $expirationTimeOptions = array(
+ array(
+ 'value' => 'minute',
+ 'label' => 'One minute'
+ ),
+ array(
+ 'value' => 'hour',
+ 'label' => 'One hour'
+ ),
+ array(
+ 'value' => 'day',
+ 'label' => 'One day'
+ ),
+ array(
+ 'value' => 'week',
+ 'label' => 'One week'
+ ),
+ array(
+ 'value' => 'month',
+ 'label' => 'One month'
+ ),
+ array(
+ 'value' => 'quarter',
+ 'label' => 'One quarter'
+ ),
+ array(
+ 'value' => 'year',
+ 'label' => 'One year'
+ ),
+ array(
+ 'value' => 'none',
+ 'label' => 'None'
+ )
+ );
+ foreach ($expirationTimeOptions as $expirationTimeOption) {
+ $selected = ($expirationTimeOption['value'] === $cfg['availability_default'])? 'selected="selected"' : '';
+ if (true === $cfg['availabilities'][$expirationTimeOption['value']]) {
+ echo '<option value="' . $expirationTimeOption['value'] . '" ' .
+ $selected . '>' . t($expirationTimeOption['label']) . '</option>';
+ }
+ }
+ ?>
+ </select></td>
+ </tr>
+
+ <?php
+ if ($cfg['maximal_upload_size'] > 0) {
+ echo '<p class="config">' . t('File size is limited to');
+ echo " " . $cfg['maximal_upload_size'] . " MB</p>";