2011-08-08 23:40:39 +04:00
|
|
|
<div id="controls">
|
2011-08-10 17:10:32 +04:00
|
|
|
<?php echo($_['breadcrumb']); ?>
|
2011-04-19 04:51:59 +04:00
|
|
|
<div class="actions">
|
2011-07-20 17:50:42 +04:00
|
|
|
<form data-upload-id='1' class="file_upload_form" action="ajax/upload.php" method="post" enctype="multipart/form-data" target="file_upload_target_1">
|
2011-08-08 14:48:43 +04:00
|
|
|
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $_['uploadMaxFilesize'] ?>" id="max_upload">
|
|
|
|
<input type="hidden" class="max_human_file_size" value="(max <?php echo $_['uploadMaxHumanFilesize']; ?>)">
|
|
|
|
<input type="hidden" name="dir" value="<?php echo $_['dir'] ?>" id="dir">
|
2011-08-20 07:07:58 +04:00
|
|
|
<div class="file_upload_wrapper svg">
|
2011-08-12 13:26:13 +04:00
|
|
|
<input type="submit" class="file_upload_filename" value="<?php echo $l->t('Upload'); ?>"/>
|
2011-08-20 07:07:58 +04:00
|
|
|
<input class="file_upload_start" type="file" name='files[]'/>
|
2011-08-12 13:42:41 +04:00
|
|
|
<a href="#" class="file_upload_button_wrapper" onclick="return false;" title="<?php echo 'max. '.$_['uploadMaxHumanFilesize'] ?>"></a>
|
2011-08-08 14:48:43 +04:00
|
|
|
</div>
|
2011-07-20 17:50:42 +04:00
|
|
|
<iframe name="file_upload_target_1" class='file_upload_target' src=""></iframe>
|
2011-06-03 04:44:31 +04:00
|
|
|
</form>
|
|
|
|
<form id="file_newfolder_form">
|
2011-08-11 22:35:20 +04:00
|
|
|
<input class="svg" type="text" name="file_newfolder_name" id="file_newfolder_name" value="" placeholder="<?php echo $l->t('New Folder')?>" />
|
2011-06-03 04:44:31 +04:00
|
|
|
</form>
|
2011-04-19 04:51:59 +04:00
|
|
|
</div>
|
|
|
|
<div id="file_action_panel">
|
2011-04-17 18:19:21 +04:00
|
|
|
</div>
|
2011-03-03 01:06:23 +03:00
|
|
|
</div>
|
2011-08-04 02:22:44 +04:00
|
|
|
<div id='notification'></div>
|
2011-03-03 01:06:23 +03:00
|
|
|
|
2011-08-20 07:07:58 +04:00
|
|
|
<div id="emptyfolder" <?php if(count($_['files'])) echo 'style="display:none;"';?>><?php echo $l->t('Nothing in here. Upload something!')?></div>
|
|
|
|
|
|
|
|
<table>
|
2011-03-03 01:06:23 +03:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2011-07-22 00:01:55 +04:00
|
|
|
<th id='headerName'>
|
|
|
|
<input type="checkbox" id="select_all" />
|
|
|
|
<span class='name'><?php echo $l->t( 'Name' ); ?></span>
|
2011-07-28 14:14:55 +04:00
|
|
|
<span class='selectedActions'>
|
2011-09-22 21:41:31 +04:00
|
|
|
<a href="" title="<?php echo $l->t('Download')?>" class="download"><img class='svg' alt="Download" src="<?php echo image_path("core", "actions/download.svg"); ?>" /></a>
|
|
|
|
<a href="" title="Share" class="share"><img class='svg' alt="Share" src="<?php echo image_path("core", "actions/share.svg"); ?>" /></a>
|
2011-07-22 00:01:55 +04:00
|
|
|
</span>
|
|
|
|
</th>
|
2011-08-12 13:26:13 +04:00
|
|
|
<th id="headerSize"><?php echo $l->t( 'Size' ); ?></th>
|
2011-09-22 21:41:31 +04:00
|
|
|
<th id="headerDate"><span id="modified"><?php echo $l->t( 'Modified' ); ?></span><span class="selectedActions"><a href="" title="Delete" class="delete"><img class="svg" alt="<?php echo $l->t('Delete')?>" src="<?php echo image_path("core", "actions/delete.svg"); ?>" /></a></span></th>
|
2011-03-03 01:06:23 +03:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2011-04-17 17:59:06 +04:00
|
|
|
<tbody id="fileList">
|
|
|
|
<?php echo($_['fileList']); ?>
|
2011-03-03 01:06:23 +03:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2011-08-09 19:54:02 +04:00
|
|
|
<div id="uploadsize-message" title="<?php echo $l->t('Upload too large')?>">
|
2011-07-22 17:48:30 +04:00
|
|
|
<p>
|
2011-08-20 07:07:58 +04:00
|
|
|
<?php echo $l->t('The files you are trying to upload exceed the maximum size for file uploads on this server.');?>
|
2011-07-22 17:48:30 +04:00
|
|
|
</p>
|
|
|
|
</div>
|