You are here

class FMDir in N1ED - Visual editor as CKEditor plugin with Bootstrap support 8.2

Directory data structure.

Hierarchy

  • class \Drupal\n1ed\Flmngr\FlmngrServer\model\FMDir

Expanded class hierarchy of FMDir

1 file declares its use of FMDir
FMDiskFileSystem.php in src/Flmngr/FlmngrServer/fs/FMDiskFileSystem.php

File

src/Flmngr/FlmngrServer/model/FMDir.php, line 8

Namespace

Drupal\n1ed\Flmngr\FlmngrServer\model
View source
class FMDir {
  private $path;
  private $name;
  public $f;
  public $d;
  public $p;

  /**
   * Creates an instance.
   */
  public 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

Namesort descending Modifiers Type Description Overrides
FMDir::$d public property
FMDir::$f public property
FMDir::$name private property
FMDir::$p public property
FMDir::$path private property
FMDir::__construct public function Creates an instance.