Your IP : 3.147.6.58


Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/seo/lib/businesssuite/
Upload File :
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/seo/lib/businesssuite/extension.php

<?php

namespace Bitrix\Seo\BusinessSuite;

use Bitrix\Seo\Retargeting;
use Bitrix\Seo\BusinessSuite\Configuration\Facebook;

abstract class Extension extends AbstractBase
{
	/**
	 * get installs FBE
	 * @return Retargeting\Response|null
	 * @throws \Bitrix\Main\SystemException
	 */
	public function getInstalls(): ?Retargeting\Response
	{
		if ($setup = Facebook\Setup::load())
		{
			return $installs = $this->getRequest()->send(['methodName' => $this->getMethodName('installs.get'),
				'parameters' => [
					'fbe_external_business_id' => $setup->get(Facebook\Setup::BUSINESS_ID)
				]
			]);
		}
		return null;
	}

	/**
	 * uninstall FBE
	 * @return Retargeting\Response|null
	 * @throws \Bitrix\Main\SystemException
	 */
	public function uninstall() : ?Retargeting\Response
	{
		if ($setup = Facebook\Setup::load())
		{
			return $this->getRequest()->send([
				'methodName' => $this->getMethodName('installs.delete'),
				'parameters' => [
					'fbe_external_business_id' => $setup->get(Facebook\Setup::BUSINESS_ID)
				]
			]);
		}
		return null;
	}
}