Prado\Web\TAssetManager::deployTarFile PHP Метод

deployTarFile() защищенный Метод

N.B Tar file must not be compressed.
protected deployTarFile ( $path, $destination ) : boolean
Результат boolean true if extract successful, false otherwise.
    protected function deployTarFile($path, $destination)
    {
        if (($fullpath = realpath($path)) === false || !is_file($fullpath)) {
            throw new TIOException('assetmanager_tarfile_invalid', $path);
        } else {
            $tar = new TTarFileExtractor($fullpath);
            return $tar->extract($destination);
        }
    }