FluidTYPO3\Flux\Service\ContentService::updateMovePlaceholder PHP Method

updateMovePlaceholder() protected method

protected updateMovePlaceholder ( array $row ) : void
$row array
return void
    protected function updateMovePlaceholder(array $row)
    {
        $movePlaceholder = $this->getMovePlaceholder($row['uid']);
        if (FALSE !== $movePlaceholder) {
            $movePlaceholder['tx_flux_parent'] = $row['tx_flux_parent'];
            $movePlaceholder['tx_flux_column'] = $row['tx_flux_column'];
            $movePlaceholder['colPos'] = $row['colPos'];
            $this->updateRecordInDatabase($movePlaceholder);
        }
    }