You are here

public function AFile::getErrors in N1ED - Visual editor as CKEditor plugin with Bootstrap support 8.2

Gets errors accumulated for file.

3 calls to AFile::getErrors()
AFile::getData in src/Flmngr/FileUploaderServer/lib/file/AFile.php
Gets a data for response format file representation.
FileUploaded::getErrors in src/Flmngr/FileUploaderServer/lib/file/FileUploaded.php
Gets errors accumulated for file.
FileUploadedQuick::getErrors in src/Flmngr/FileUploaderServer/lib/file/FileUploadedQuick.php
Gets errors accumulated for file.
2 methods override AFile::getErrors()
FileUploaded::getErrors in src/Flmngr/FileUploaderServer/lib/file/FileUploaded.php
Gets errors accumulated for file.
FileUploadedQuick::getErrors in src/Flmngr/FileUploaderServer/lib/file/FileUploadedQuick.php
Gets errors accumulated for file.

File

src/Flmngr/FileUploaderServer/lib/file/AFile.php, line 94

Class

AFile
Abstract file item both for just uploaded and fully commited files. Contains some handy method for accessing files info programmatically.

Namespace

Drupal\n1ed\Flmngr\FileUploaderServer\lib\file

Code

public function getErrors() {
  return $this->commonErrors;
}