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

buildInactivePackageRelativePath() protected method

Build the relative path to store a deactivated package based on the package.
protected buildInactivePackageRelativePath ( string $packagePath ) : string
$packagePath string absolute path to the package
return string
    protected function buildInactivePackageRelativePath($packagePath)
    {
        return Files::getNormalizedPath(Files::concatenatePaths([self::INACTIVE_PACKAGES_FOLDER, str_replace($this->packagesBasePath, '', $packagePath)]));
    }