• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/v2/Integration/Seo/Facebook/FacebookAgent.php
  • Класс: BitrixCatalogv2IntegrationSeoFacebookFacebookAgent
  • Вызов: FacebookAgent::unregisterCatalogFacebookAgent
static function unregisterCatalogFacebookAgent(): void
{
	$agent = CAgent::GetList(
		['ID' => 'DESC'],
		["MODULE_ID" => 'catalog', "NAME" => self::AGENT_NAME]
	);

	if ($agent->Fetch())
	{
		CAgent::RemoveAgent(
			self::AGENT_NAME,
			'catalog'
		);
	}
}