Neos\Flow\Package\PackageManager::buildActivePackageRelativePath PHP Метод

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

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