class FMFile in N1ED - Visual editor as CKEditor plugin with Bootstrap support 7
Hierarchy
- class \EdSDK\FlmngrServer\model\FMFile
Expanded class hierarchy of FMFile
1 file declares its use of FMFile
- FMDiskFileSystem.php in vendor/
edsdk/ flmngr-server-php/ src/ fs/ FMDiskFileSystem.php
File
- vendor/
edsdk/ flmngr-server-php/ src/ model/ FMFile.php, line 12
Namespace
EdSDK\FlmngrServer\modelView source
class FMFile {
public $p;
// contains parent dir's path WITHOUT starting AND trailing "/"
public $s;
public $t;
public $w;
public $h;
function __construct($path, $name, $size, $timeModification, $imageInfo) {
$this->p = "/" . $path . "/" . $name;
$this->s = $size;
$this->t = $timeModification;
$this->w = $imageInfo->width == 0 ? null : $imageInfo->width;
$this->h = $imageInfo->height == 0 ? null : $imageInfo->height;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FMFile:: |
public | property | ||
FMFile:: |
public | property | ||
FMFile:: |
public | property | ||
FMFile:: |
public | property | ||
FMFile:: |
public | property | ||
FMFile:: |
function |