AttachmentManager::getFullPath PHP Méthode

getFullPath() public méthode

Get the fullpath to a relative file.
public getFullPath ( string $relative ) : string
$relative string the relative file.
Résultat string the full path, .ie. the base_dir + relative.
    function getFullPath($relative)
    {
        return Files::makeFile($this->getBaseDir(), $relative);
    }