Jarves\Storage\AbstractStorage::move PHP Method

move() public method

Moves a item to a new position.
public move ( array $pk, array $targetPk, string $position = 'first', $targetObjectKey = null ) : boolean
$pk array Full PK as array
$targetPk array Full PK as array
$position string `first` (child), `last` (last child), `prev` (sibling), `next` (sibling)
$targetObjectKey
return boolean
    public function move($pk, $targetPk, $position = 'first', $targetObjectKey = null)
    {
        throw new \Exception('Move method is not implemented for this object layer.');
    }