Neos\Flow\Package\PackageManager::buildActivePackageRelativePath PHP Méthode

buildActivePackageRelativePath() protected méthode

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