You are here

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

Gets full path.

10 calls to AFile::getFullPath()
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::exists in src/Flmngr/FileUploaderServer/lib/file/AFile.php
Does file exist.
AFile::getImage in src/Flmngr/FileUploaderServer/lib/file/AFile.php
Gets as image object.
AFile::getImageHeight in src/Flmngr/FileUploaderServer/lib/file/AFile.php
Gets height of image.

... See full list

1 method overrides AFile::getFullPath()
FileUploadedQuick::getFullPath in src/Flmngr/FileUploaderServer/lib/file/FileUploadedQuick.php
Gets full path.

File

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

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 getFullPath() {
  return $this
    ->getBaseDir() . DIRECTORY_SEPARATOR . $this
    ->getPath();
}