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

hide() public method

See also: eZ\Publish\SPI\Persistence\Content\Location\Handler::hide
public hide ( $locationId )
    public function hide($locationId)
    {
        $this->logger->logCall(__METHOD__, array('location' => $locationId));
        $return = $this->persistenceHandler->locationHandler()->hide($locationId);
        $this->cache->clear('location');
        //TIMBER! (visibility)
        return $return;
    }