• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/retargeting/account.php
  • Класс: BitrixSeoRetargetingAccount
  • Вызов: Account::getCacheId
protected function getCacheId()
{
	$cacheId = 'seo|account_profile|';
	$service = $this->service;
	$cacheId .= $service ? $service::getEngineCode(static::TYPE_CODE) : static::TYPE_CODE;
	if ($service instanceof BitrixSeoRetargetingIMultiClientService)
	{
		$cacheId .= '|' . $service->getClientId();
	}
	return $cacheId;
}