Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
facebookconversion.php
1<?php
2
4
7
8Loc::loadMessages(__FILE__);
9
11{
12 public function configureActions()
13 {
14 return [
15 'customizeProduct' => [
16 '-prefilters' => [
17 Authentication::class
18 ]
19 ],
20 'contact' => [
21 '-prefilters' => [
22 Authentication::class
23 ]
24 ],
25 ];
26 }
27
28 public function contactAction($contactBy): void
29 {
30 \Bitrix\Sale\Internals\FacebookConversion::onContactHandler($contactBy);
31 }
32
33 public function customizeProductAction(string $offerId): void
34 {
35 \Bitrix\Sale\Internals\FacebookConversion::onCustomizeProductHandler((int)$offerId);
36 }
37}
static loadMessages($file)
Definition loc.php:64