class FMDir in N1ED - Visual editor as CKEditor plugin with Bootstrap support 7
Hierarchy
- class \EdSDK\FlmngrServer\model\FMDir
Expanded class hierarchy of FMDir
1 file declares its use of FMDir
- FMDiskFileSystem.php in vendor/edsdk/ flmngr-server-php/ src/ fs/ FMDiskFileSystem.php 
File
- vendor/edsdk/ flmngr-server-php/ src/ model/ FMDir.php, line 12 
Namespace
EdSDK\FlmngrServer\modelView source
class FMDir {
  private $path;
  // contains parent dir's path WITHOUT starting AND trailing "/"
  private $name;
  public $f;
  public $d;
  public $p;
  // property exists in PHP version only, for JSON generation
  function __construct($name, $path, $filesCount, $dirsCount) {
    $this->path = $path;
    $this->name = $name;
    $this->f = $filesCount;
    $this->d = $dirsCount;
    $this->p = (strlen($this->path) > 0 ? "/" . $this->path : "") . "/" . $this->name;
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| FMDir:: | public | property | ||
| FMDir:: | public | property | ||
| FMDir:: | private | property | ||
| FMDir:: | public | property | ||
| FMDir:: | private | property | ||
| FMDir:: | function | 
