Pimcore\Model\Asset\WebDAV\Tree::move PHP Метод

move() публичный Метод

Moves a file/directory
public move ( string $sourcePath, string $destinationPath ) : void
$sourcePath string
$destinationPath string
Результат void
    public function move($sourcePath, $destinationPath)
    {
        $nameParts = explode("/", $sourcePath);
        $nameParts[count($nameParts) - 1] = Element\Service::getValidKey($nameParts[count($nameParts) - 1], "asset");
        $sourcePath = implode("/", $nameParts);
        $nameParts = explode("/", $destinationPath);
        $nameParts[count($nameParts) - 1] = Element\Service::getValidKey($nameParts[count($nameParts) - 1], "asset");
        $destinationPath = implode("/", $nameParts);
        try {
            if (dirname($sourcePath) == dirname($destinationPath)) {
                $asset = null;
                if ($asset = Asset::getByPath("/" . $destinationPath)) {
                    // If we got here, this means the destination exists, and needs to be overwritten
                    $sourceAsset = Asset::getByPath("/" . $sourcePath);
                    $asset->setData($sourceAsset->getData());
                    $sourceAsset->delete();
                }
                // see: Asset\WebDAV\File::delete() why this is necessary
                $log = Asset\WebDAV\Service::getDeleteLog();
                if (!$asset && array_key_exists("/" . $destinationPath, $log)) {
                    $asset = \Pimcore\Tool\Serialize::unserialize($log["/" . $destinationPath]["data"]);
                    if ($asset) {
                        $sourceAsset = Asset::getByPath("/" . $sourcePath);
                        $asset->setData($sourceAsset->getData());
                        $sourceAsset->delete();
                    }
                }
                if (!$asset) {
                    $asset = Asset::getByPath("/" . $sourcePath);
                }
                $asset->setFilename(basename($destinationPath));
            } else {
                $asset = Asset::getByPath("/" . $sourcePath);
                $parent = Asset::getByPath("/" . dirname($destinationPath));
                $asset->setPath($parent->getRealFullPath() . "/");
                $asset->setParentId($parent->getId());
            }
            $user = \Pimcore\Tool\Admin::getCurrentUser();
            $asset->setUserModification($user->getId());
            $asset->save();
        } catch (\Exception $e) {
            Logger::error($e);
        }
    }
Tree