You are here

interface IFMDiskFileSystem in N1ED - Visual editor as CKEditor plugin with Bootstrap support 7

Hierarchy

Expanded class hierarchy of IFMDiskFileSystem

All classes that implement IFMDiskFileSystem

File

vendor/edsdk/flmngr-server-php/src/fs/IFMDiskFileSystem.php, line 12

Namespace

EdSDK\FlmngrServer\fs
View source
interface IFMDiskFileSystem {
  function getImagePreview($filePath, $width, $height);
  function getImageOriginal($filePath);
  function getDirs();
  function deleteDir($dirPath);
  function createDir($dirPath, $name);
  function renameFile($filePath, $newName);
  function renameDir($dirPath, $newName);
  function getFiles($dirPath);

  // with "/root_dir_name" in the start
  function deleteFiles($filesPaths);
  function copyFiles($filesPaths, $newPath);
  function moveFiles($filesPaths, $newPath);
  function moveDir($dirPath, $newPath);
  function resizeFile($filePath, $newFileNameWithoutExt, $width, $height, $mode);
  function copyDir($dirPath, $newPath);
  function getDirZipArchive($dirPath, $out);

}

Members