Neos\Flow\Package\PackageManager::buildActivePackageRelativePath PHP Method

buildActivePackageRelativePath() protected method

Build the relative path to store an active package from the given inactive path
protected buildActivePackageRelativePath ( string $inactivePackagePath ) : string
$inactivePackagePath string
return string
    protected function buildActivePackageRelativePath($inactivePackagePath)
    {
        $inactivePackagesBasePath = Files::getNormalizedPath(Files::concatenatePaths([$this->packagesBasePath, self::INACTIVE_PACKAGES_FOLDER]));
        return Files::getNormalizedPath(str_replace($inactivePackagesBasePath, '', $inactivePackagePath));
    }