/** * Constructor * * @param CKFinder $app * @param UploadedFile $uploadedFile */ public function __construct(CKFinder $app, UploadedFile $uploadedFile) { $this->uploadedFile = $uploadedFile; parent::__construct($app); }
/** * Constructor * * @param CKFinder $app * @param MovedFile $movedFile */ public function __construct(CKFinder $app, MovedFile $movedFile) { $this->movedFile = $movedFile; parent::__construct($app); }
/** * Constructor. * * @param CKFinder $app * @param DownloadedFile $downloadedFile */ public function __construct(CKFinder $app, DownloadedFile $downloadedFile) { $this->downloadedFile = $downloadedFile; parent::__construct($app); }
/** * Constructor * * @param CKFinder $app * @param EditedFile $editedFile * @param string $newContents new file contents */ public function __construct(CKFinder $app, EditedFile $editedFile, $newContents) { $this->editedFile = $editedFile; $this->newContents = $newContents; parent::__construct($app); }
/** * Constructor * * @param CKFinder $app * @param WorkingFolder $workingFolder * @param string $newFolderName */ public function __construct(CKFinder $app, WorkingFolder $workingFolder, $newFolderName) { $this->workingFolder = $workingFolder; $this->newFolderName = $newFolderName; parent::__construct($app); }
/** * Constructor. * * @param CKFinder $app * @param RenamedFile $renamedFile */ public function __construct(CKFinder $app, RenamedFile $renamedFile) { $this->renamedFile = $renamedFile; parent::__construct($app); }
/** * Constructor * * @param CKFinder $app * @param WorkingFolder $workingFolder */ public function __construct(CKFinder $app, WorkingFolder $workingFolder) { $this->workingFolder = $workingFolder; parent::__construct($app); }
/** * Constructor * * @param CKFinder $app * @param string $commandName * @param Response $response */ public function __construct(CKFinder $app, $commandName, Response $response) { $this->commandName = $commandName; $this->response = $response; parent::__construct($app); }
/** * Constructor * * @param CKFinder $app * @param CopiedFile $copiedFile */ public function __construct(CKFinder $app, CopiedFile $copiedFile) { $this->copiedFile = $copiedFile; parent::__construct($app); }
/** * Constructor * * @param CKFinder $app * @param DeletedFile $deletedFile */ public function __construct(CKFinder $app, DeletedFile $deletedFile) { $this->deletedFile = $deletedFile; parent::__construct($app); }
/** * @param CKFinder $app * @param ResizedImageAbstract $resizedImage */ public function __construct(CKFinder $app, ResizedImageAbstract $resizedImage) { parent::__construct($app); $this->resizedImage = $resizedImage; }
/** * Constructor * * @param CKFinder $app * @param EditedFile $editedFile */ public function __construct(CKFinder $app, EditedFile $editedFile) { $this->editedFile = $editedFile; parent::__construct($app); }
/** * Constructor. * * @param CKFinder $app * @param string $commandName * @param CommandAbstract $commandObject */ public function __construct(CKFinder $app, $commandName, CommandAbstract $commandObject) { $this->commandName = $commandName; $this->commandObject = $commandObject; parent::__construct($app); }