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

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

Moves a package from the given inactive package path to the active package path.
protected movePackageToActivatedPackages ( string $inactivePackagePath ) : void
$inactivePackagePath string
Результат void
    protected function movePackageToActivatedPackages($inactivePackagePath)
    {
        $activePackagePath = Files::getNormalizedPath(Files::concatenatePaths([$this->packagesBasePath, $this->buildActivePackageRelativePath($inactivePackagePath)]));
        $this->movePackage($inactivePackagePath, $activePackagePath);
    }