You are here

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

Gets name.

12 calls to AFile::getName()
AFile::checkForErrors in src/Flmngr/FileUploaderServer/lib/file/AFile.php
Returns do we need to continue check or not.
AFile::copyTo in src/Flmngr/FileUploaderServer/lib/file/AFile.php
Copies file to another place.
AFile::delete in src/Flmngr/FileUploaderServer/lib/file/AFile.php
Deletes file from storage.
AFile::getData in src/Flmngr/FileUploaderServer/lib/file/AFile.php
Gets a data for response format file representation.
AFile::getPath in src/Flmngr/FileUploaderServer/lib/file/AFile.php
Gets path.

... See full list

File

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

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 getName() {
  return $this->name;
}