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

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

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
Результат string
    protected function buildInactivePackageRelativePath($packagePath)
    {
        return Files::getNormalizedPath(Files::concatenatePaths([self::INACTIVE_PACKAGES_FOLDER, str_replace($this->packagesBasePath, '', $packagePath)]));
    }