DmitryDulepov\Realurl\Cache\DatabaseCache::clearPathCacheForPage PHP Method

clearPathCacheForPage() public method

Empties the path cache for one page.
public clearPathCacheForPage ( integer $pageId ) : void
$pageId integer
return void
    public function clearPathCacheForPage($pageId)
    {
        $this->databaseConnection->exec_DELETEquery('tx_realurl_pathdata', 'page_id=' . (int) $pageId . ' AND expire=0');
    }