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)]));
    }