eZ\Publish\Core\Persistence\Cache\LocationHandler::move PHP Method

move() public method

See also: eZ\Publish\SPI\Persistence\Content\Location\Handler::move
public move ( $sourceId, $destinationParentId )
    public function move($sourceId, $destinationParentId)
    {
        $this->logger->logCall(__METHOD__, array('source' => $sourceId, 'destination' => $destinationParentId));
        $return = $this->persistenceHandler->locationHandler()->move($sourceId, $destinationParentId);
        $this->cache->clear('location');
        //TIMBER! (path[Identification]String)
        $this->cache->clear('user', 'role', 'assignments', 'byGroup');
        return $return;
    }