Jelix\Installer\AbstractInstaller::copyDirectoryContent PHP Метод

copyDirectoryContent() закрытый защищенный Метод

copy the whole content of a directory existing in the install/ directory of the component, to the given directory
final protected copyDirectoryContent ( string $relativeSourcePath, string $targetPath, $overwrite = false )
$relativeSourcePath string relative path to the install/ directory of the component
$targetPath string the full path where to copy the content
    protected final function copyDirectoryContent($relativeSourcePath, $targetPath, $overwrite = false)
    {
        $targetPath = $this->expandPath($targetPath);
        $this->_copyDirectoryContent($this->path . 'install/' . $relativeSourcePath, $targetPath, $overwrite);
    }