eZ\Publish\Core\Persistence\Cache\UrlAliasHandler::publishUrlAliasForLocation PHP Method

publishUrlAliasForLocation() public method

See also: eZ\Publish\SPI\Persistence\Content\UrlAlias\Handler::publishUrlAliasForLocation
public publishUrlAliasForLocation ( $locationId, $parentLocationId, $name, $languageCode, $alwaysAvailable = false, $updatePathIdentificationString = false )
    public function publishUrlAliasForLocation($locationId, $parentLocationId, $name, $languageCode, $alwaysAvailable = false, $updatePathIdentificationString = false)
    {
        $this->logger->logCall(__METHOD__, array('location' => $locationId, 'parent' => $parentLocationId, 'name' => $name, 'language' => $languageCode, 'alwaysAvailable' => $alwaysAvailable));
        $this->clearLocation($locationId);
        $this->persistenceHandler->urlAliasHandler()->publishUrlAliasForLocation($locationId, $parentLocationId, $name, $languageCode, $alwaysAvailable, $updatePathIdentificationString);
    }