You are here

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

Gets path.

1 call to AFile::getPath()
AFile::getFullPath in src/Flmngr/FileUploaderServer/lib/file/AFile.php
Gets full path.

File

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

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