icons added; empty trash bin message added
This commit is contained in:
parent
320233ec3d
commit
d10e137939
|
@ -292,7 +292,7 @@ var FileList={
|
|||
procesSelection();
|
||||
}
|
||||
});
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
$(document).ready(function(){
|
||||
|
|
|
@ -95,6 +95,7 @@ $list->assign('dirlisting', $dirlisting);
|
|||
$list->assign('disableDownloadActions', true);
|
||||
$tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage(), false);
|
||||
$tmpl->assign('fileList', $list->fetchPage(), false);
|
||||
$tmpl->assign('files', $files);
|
||||
$tmpl->assign('dir', OC_Filesystem::normalizePath($view->getAbsolutePath()));
|
||||
|
||||
$tmpl->printPage();
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
$(document).ready(function() {
|
||||
|
||||
if (typeof FileActions !== 'undefined') {
|
||||
FileActions.register('all', 'Undelete', OC.PERMISSION_READ, '', function(filename) {
|
||||
FileActions.register('all', 'Undelete', OC.PERMISSION_READ, OC.imagePath('core', 'actions/undelete.png'), function(filename) {
|
||||
var tr=$('tr').filterAttr('data-file', filename);
|
||||
$.post(OC.filePath('files_trashbin','ajax','undelete.php'),
|
||||
{files:tr.attr('data-file'), dirlisting:tr.attr('data-dirlisting') },
|
||||
|
|
|
@ -54,7 +54,7 @@ class Trashbin {
|
|||
self::copy_recursive($file_path, 'files_trashbin/'.$deleted.'.d'.$timestamp, $view);
|
||||
|
||||
$query = \OC_DB::prepare("INSERT INTO *PREFIX*files_trash (id,timestamp,location,type,mime,user) VALUES (?,?,?,?,?,?)");
|
||||
$result = $query->execute(array($deleted, $timestamp, $location, $type, $mime, $user));
|
||||
$query->execute(array($deleted, $timestamp, $location, $type, $mime, $user));
|
||||
|
||||
if ( \OCP\App::isEnabled('files_versions') ) {
|
||||
if ( $view->is_dir('files_versions'.$file_path) ) {
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
</div>
|
||||
<div id='notification'></div>
|
||||
|
||||
<?php if (isset($_['files']) and $_['isCreatable'] and count($_['files'])==0):?>
|
||||
<div id="emptyfolder"><?php echo $l->t('Nothing in here. Upload something!')?></div>
|
||||
<?php if (isset($_['files']) && count($_['files'])==0):?>
|
||||
<div id="emptyfolder"><?php echo $l->t('Nothing in here. Trash bin empty!')?></div>
|
||||
<?php endif; ?>
|
||||
|
||||
<table>
|
||||
|
@ -17,9 +17,8 @@
|
|||
<span class='name'><?php echo $l->t( 'Name' ); ?></span>
|
||||
<span class='selectedActions'>
|
||||
<a href="" class="undelete">
|
||||
<!-- <img class="svg" alt="Undelete"
|
||||
src="<?php echo OCP\image_path("core", "actions/download.svg"); ?>" />
|
||||
-->
|
||||
<img class="svg" alt="Undelete"
|
||||
src="<?php echo OCP\image_path("core", "actions/undelete.png"); ?>" />
|
||||
<?php echo $l->t('Undelete')?>
|
||||
</a>
|
||||
</span>
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 680 B |
Loading…
Reference in New Issue