• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/hook/page/pixelfb.php
  • Класс: BitrixLandingHookPagePixelFb
  • Вызов: PixelFb::getBusinessPixel
private function getBusinessPixel(): ?string
{
	$pixelStored = Manager::getOption('business_pixel');
	if ($pixelStored === null)
	{
		$pixelStored = $this->getBusinessPixelFromSeo();
		Manager::setOption('business_pixel', $pixelStored);
	}

	return $pixelStored;
}