You are here

private static function FlmngrServer::reqDirMove in N1ED - Visual editor as CKEditor plugin with Bootstrap support 7

1 call to FlmngrServer::reqDirMove()
FlmngrServer::flmngrRequest in vendor/edsdk/flmngr-server-php/src/FlmngrServer.php

File

vendor/edsdk/flmngr-server-php/src/FlmngrServer.php, line 170

Class

FlmngrServer

Namespace

EdSDK\FlmngrServer

Code

private static function reqDirMove($config) {
  $dirPath = $_POST['d'];
  $newPath = $_POST['n'];
  try {
    $fileSystem = new FMDiskFileSystem($config);
    $fileSystem
      ->moveDir($dirPath, $newPath);
    return new Response(NULL, TRUE);
  } catch (MessageException $e) {
    return new Response($e
      ->getFailMessage(), NULL);
  }
}