* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
<div id="upload_finished_download_page">
<p>
- <?php echo t('Download page') ?>
+ <?php echo t('Download page') ?>
<a id="upload_link_email" href=""><img id="upload_image_email"/></a>
</p>
<p><a id="upload_link" href=""></a></p>
<div id="upload">
<fieldset>
<legend>
- <?php echo t('Select a file'); ?>
+ <?php echo t('Select a file'); ?>
</legend>
<p>
<input type="file" id="file_select" size="30"
<tr>
<td><label for="select_time"><?php echo t('Time limit') . ':'; ?></label></td>
<td><select name="time" id="select_time">
- <?php if ($cfg['availabilities']['none']) { ?>
- <option value="none"><?php echo t('None'); ?></option>
- <?php } ?>
- <?php if ($cfg['availabilities']['year']) { ?>
- <option value = "year"><?php echo t('One year');?></option>
- <?php } ?>
- <?php if ($cfg['availabilities']['month']) { ?>
- <option value = "month"><?php echo t('One month');?></option>
- <?php } ?>
- <?php if ($cfg['availabilities']['week']) { ?>
- <option value = "week"><?php echo t('One week'); ?></option>
- <?php } ?>
- <?php if ($cfg['availabilities']['day']) { ?>
- <option value = "day"><?php echo t('One day'); ?></option>
- <?php } ?>
- <?php if ($cfg['availabilities']['hour']) { ?>
- <option value = "hour"><?php echo t('One hour'); ?></option>
- <?php } ?>
- <?php if ($cfg['availabilities']['minute']) { ?>
- <option value = "minute"><?php echo t('One minute'); ?></option>
- <?php } ?>
+ <?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>
</div>
-<script lang="Javascript">
+<script type="text/javascript" lang="Javascript">
document.getElementById('error_pop').style.display = 'none';
document.getElementById('uploading').style.display = 'none';
document.getElementById('upload_finished').style.display = 'none';