summaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/move.php
blob: 703e6a026f8433fee6bd973615a9c14800be9169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

// Init owncloud


OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();

// Get data
$dir = stripslashes($_GET["dir"]);
$file = stripslashes($_GET["file"]);
$target = stripslashes(urldecode($_GET["target"]));


if(OC_Files::move($dir, $file, $target, $file)) {
	OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file )));
} else {
	$l=OC_L10N::get('files');
	OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) )));
}