You are here

public function Actions::__construct in N1ED - Visual editor as CKEditor plugin with Bootstrap support 7

File

vendor/edsdk/file-uploader-server-php/src/lib/Actions.php, line 23

Class

Actions

Namespace

EdSDK\FileUploaderServer\lib

Code

public function __construct() {
  $this->m_actions[] = new ActionError();
  $this->m_actions[] = new ActionUploadInit();
  $this->m_actions[] = new ActionUploadAddFile();
  $this->m_actions[] = new ActionUploadRemoveFile();
  $this->m_actions[] = new ActionUploadCommit();
  $this->m_actions[] = new ActionUploadCancel();
}