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

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

Moves a package from the regular package path to the inactive packages directory.
protected movePackageToDeactivatedPackages ( string $packagePath ) : void
$packagePath string absolute path to the package
Результат void
    protected function movePackageToDeactivatedPackages($packagePath)
    {
        $inactivePackagePath = Files::getNormalizedPath(Files::concatenatePaths([$this->packagesBasePath, $this->buildInactivePackageRelativePath($packagePath)]));
        $this->movePackage($packagePath, $inactivePackagePath);
    }