You are here

public function FileUploaded::__construct in N1ED - Visual editor as CKEditor plugin with Bootstrap support 8.2

Creates a File instance.

Overrides AFile::__construct

File

src/Flmngr/FileUploaderServer/lib/file/FileUploaded.php, line 24

Class

FileUploaded
Uploaded but not commited yet file. Data stucture about file is to be converted to commited file when all validations are passed.

Namespace

Drupal\n1ed\Flmngr\FileUploaderServer\lib\file

Code

public function __construct($config, $dir, $name, $newName) {
  parent::__construct($config, $dir, $name);
  $this->newName = $newName;
}