AttachmentManager::getFullPath PHP Метод

getFullPath() публичный Метод

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