You are here

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

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

File

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

Class

FlmngrServer

Namespace

EdSDK\FlmngrServer

Code

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