コード例 #1
0
 /**
  * Constructor
  *
  * @param CKFinder     $app
  * @param UploadedFile $uploadedFile
  */
 public function __construct(CKFinder $app, UploadedFile $uploadedFile)
 {
     $this->uploadedFile = $uploadedFile;
     parent::__construct($app);
 }
コード例 #2
0
 /**
  * Constructor
  *
  * @param CKFinder     $app
  * @param MovedFile    $movedFile
  */
 public function __construct(CKFinder $app, MovedFile $movedFile)
 {
     $this->movedFile = $movedFile;
     parent::__construct($app);
 }
コード例 #3
0
ファイル: DownloadFileEvent.php プロジェクト: mat33470/PFA
 /**
  * Constructor.
  *
  * @param CKFinder       $app
  * @param DownloadedFile $downloadedFile
  */
 public function __construct(CKFinder $app, DownloadedFile $downloadedFile)
 {
     $this->downloadedFile = $downloadedFile;
     parent::__construct($app);
 }
コード例 #4
0
 /**
  * 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);
 }
コード例 #5
0
 /**
  * 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);
 }
コード例 #6
0
ファイル: RenameFileEvent.php プロジェクト: mat33470/PFA
 /**
  * Constructor.
  *
  * @param CKFinder    $app
  * @param RenamedFile $renamedFile
  */
 public function __construct(CKFinder $app, RenamedFile $renamedFile)
 {
     $this->renamedFile = $renamedFile;
     parent::__construct($app);
 }
コード例 #7
0
 /**
  * Constructor
  *
  * @param CKFinder      $app
  * @param WorkingFolder $workingFolder
  */
 public function __construct(CKFinder $app, WorkingFolder $workingFolder)
 {
     $this->workingFolder = $workingFolder;
     parent::__construct($app);
 }
コード例 #8
0
 /**
  * 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);
 }
コード例 #9
0
 /**
  * Constructor
  *
  * @param CKFinder     $app
  * @param CopiedFile   $copiedFile
  */
 public function __construct(CKFinder $app, CopiedFile $copiedFile)
 {
     $this->copiedFile = $copiedFile;
     parent::__construct($app);
 }
コード例 #10
0
 /**
  * Constructor
  *
  * @param CKFinder      $app
  * @param DeletedFile   $deletedFile
  */
 public function __construct(CKFinder $app, DeletedFile $deletedFile)
 {
     $this->deletedFile = $deletedFile;
     parent::__construct($app);
 }
コード例 #11
0
 /**
  * @param CKFinder             $app
  * @param ResizedImageAbstract $resizedImage
  */
 public function __construct(CKFinder $app, ResizedImageAbstract $resizedImage)
 {
     parent::__construct($app);
     $this->resizedImage = $resizedImage;
 }
コード例 #12
0
 /**
  * Constructor
  *
  * @param CKFinder   $app
  * @param EditedFile $editedFile
  */
 public function __construct(CKFinder $app, EditedFile $editedFile)
 {
     $this->editedFile = $editedFile;
     parent::__construct($app);
 }
コード例 #13
0
ファイル: BeforeCommandEvent.php プロジェクト: mat33470/PFA
 /**
  * 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);
 }