21 lines
517 B
PHP
21 lines
517 B
PHP
<?php
|
|
|
|
// Init owncloud
|
|
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
OCP\JSON::callCheck();
|
|
|
|
// Get data
|
|
$dir = stripslashes($_GET["dir"]);
|
|
$file = stripslashes($_GET["file"]);
|
|
$newname = stripslashes($_GET["newname"]);
|
|
|
|
// Delete
|
|
if( $newname !== '.' and OC_Files::move( $dir, $file, $dir, $newname )) {
|
|
OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname )));
|
|
} else {
|
|
$l=OC_L10N::get('files');
|
|
OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") )));
|
|
}
|