0be9de5df5
Files app: - removed file list template, now rendering list from JSON response - FileList.addFile/addDir is now FileList.add() and takes a JS map with all required arguments instead of having a long number of function arguments - added unit tests for many FileList operations - fixed newfile.php, newfolder.php and rename.php to return the file's full JSON on success - removed obsolete/unused undo code - removed download_url / loading options, now using Files.getDownloadUrl() for that - server side now uses Helper::getFileInfo() to prepare file JSON response - previews are now client-side only Breadcrumbs are now JS only: - Added BreadCrumb class to handle breadcrumb rendering and events - Added unit test for BreadCrumb class - Moved all relevant JS functions to the BreadCrumb class Public page now uses ajax to load the file list: - Added Helper class in sharing app to make it easier to authenticate and retrieve the file's real path - Added ajax/list.php to retrieve the file list - Fixed FileActions and FileList to work with the ajax list Core: - Fixed file picker dialog to use the same list format as files app
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
|
|
// Check if we are a user
|
|
OCP\User::checkLoggedIn();
|
|
|
|
OCP\App::setActiveNavigationEntry('files_index');
|
|
|
|
OCP\Util::addScript('files_trashbin', 'disableDefaultActions');
|
|
OCP\Util::addScript('files', 'fileactions');
|
|
$tmpl = new OCP\Template('files_trashbin', 'index', 'user');
|
|
|
|
OCP\Util::addStyle('files', 'files');
|
|
OCP\Util::addStyle('files_trashbin', 'trash');
|
|
OCP\Util::addScript('files', 'breadcrumb');
|
|
OCP\Util::addScript('files', 'filelist');
|
|
// filelist overrides
|
|
OCP\Util::addScript('files_trashbin', 'filelist');
|
|
OCP\Util::addscript('files', 'files');
|
|
OCP\Util::addScript('files_trashbin', 'trash');
|
|
|
|
$dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : '';
|
|
|
|
$isIE8 = false;
|
|
preg_match('/MSIE (.*?);/', $_SERVER['HTTP_USER_AGENT'], $matches);
|
|
if (count($matches) > 0 && $matches[1] <= 8){
|
|
$isIE8 = true;
|
|
}
|
|
|
|
// if IE8 and "?dir=path" was specified, reformat the URL to use a hash like "#?dir=path"
|
|
if ($isIE8 && isset($_GET['dir'])){
|
|
if ($dir === ''){
|
|
$dir = '/';
|
|
}
|
|
header('Location: ' . OCP\Util::linkTo('files_trashbin', 'index.php') . '#?dir=' . \OCP\Util::encodePath($dir));
|
|
exit();
|
|
}
|
|
|
|
$tmpl->assign('dir', $dir);
|
|
$tmpl->assign('disableSharing', true);
|
|
|
|
$tmpl->printPage();
|