AttachmentManager::getFullPath PHP Method

getFullPath() public method

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