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

unHide() public method

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