getStorage belongs to files not to apps.
This commit is contained in:
parent
08f7d4c552
commit
7e49a33d64
|
@ -32,7 +32,7 @@ function debug($msg) {
|
||||||
OCP\Util::writeLog('contacts','ajax/uploadimport.php: '.$msg, OCP\Util::DEBUG);
|
OCP\Util::writeLog('contacts','ajax/uploadimport.php: '.$msg, OCP\Util::DEBUG);
|
||||||
}
|
}
|
||||||
|
|
||||||
$view = OCP\App::getStorage('contacts');
|
$view = OCP\Files::getStorage('contacts');
|
||||||
$tmpfile = md5(rand());
|
$tmpfile = md5(rand());
|
||||||
|
|
||||||
// If it is a Drag'n'Drop transfer it's handled here.
|
// If it is a Drag'n'Drop transfer it's handled here.
|
||||||
|
|
|
@ -23,7 +23,7 @@ function writeProgress($pct) {
|
||||||
writeProgress('10');
|
writeProgress('10');
|
||||||
$view = $file = null;
|
$view = $file = null;
|
||||||
if(isset($_POST['fstype']) && $_POST['fstype'] == 'OC_FilesystemView') {
|
if(isset($_POST['fstype']) && $_POST['fstype'] == 'OC_FilesystemView') {
|
||||||
$view = OCP\App::getStorage('contacts');
|
$view = OCP\Files::getStorage('contacts');
|
||||||
$file = $view->file_get_contents('/' . $_POST['file']);
|
$file = $view->file_get_contents('/' . $_POST['file']);
|
||||||
} else {
|
} else {
|
||||||
$file = OC_Filesystem::file_get_contents($_POST['path'] . '/' . $_POST['file']);
|
$file = OC_Filesystem::file_get_contents($_POST['path'] . '/' . $_POST['file']);
|
||||||
|
|
|
@ -156,15 +156,6 @@ class App {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string appid
|
|
||||||
* @param $app app
|
|
||||||
* @return OC_FilesystemView
|
|
||||||
*/
|
|
||||||
public static function getStorage( $app ){
|
|
||||||
return \OC_App::getStorage( $app );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -102,6 +102,15 @@ class Files {
|
||||||
return(\OC_Helper::buildNotExistingFileName( $path, $filename ));
|
return(\OC_Helper::buildNotExistingFileName( $path, $filename ));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string appid
|
||||||
|
* @param $app app
|
||||||
|
* @return OC_FilesystemView
|
||||||
|
*/
|
||||||
|
public static function getStorage( $app ){
|
||||||
|
return \OC_App::getStorage( $app );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue