You are here

RespUploadInit.php in N1ED - Visual editor as CKEditor plugin with Bootstrap support 7

File

vendor/edsdk/file-uploader-server-php/src/lib/action/resp/RespUploadInit.php
View source
<?php

/**
 * File Uploader Server package
 * Developer: N1ED
 * Website: https://n1ed.com/
 * License: GNU General Public License Version 3 or later
 **/
namespace EdSDK\FileUploaderServer\lib\action\resp;

class RespUploadInit extends RespOk {
  public $uploadId;
  public $settings;
  public function __construct($uploadId, $config) {
    $this->uploadId = $uploadId;
    $this->settings = new Settings();
    $this->settings->maxImageResizeWidth = $config
      ->getMaxImageResizeWidth();
    $this->settings->maxImageResizeHeight = $config
      ->getMaxImageResizeHeight();
  }

}

Classes

Namesort descending Description
RespUploadInit