You are here

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

Creates the list.

File

src/Flmngr/FileUploaderServer/lib/Actions.php, line 25

Class

Actions
Actions list. This class helps to understand which type of request Uploader received by checking all available handlers' names.

Namespace

Drupal\n1ed\Flmngr\FileUploaderServer\lib

Code

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