Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
statisticsprovider.php
1<?php
2
3
5
6
8
10{
11 public function register(array $params)
12 {
13 $result = Line\StatisticsProvider::getList(['xmlId'=>$params['xmlId']]);
14
15 if($result['statisticProviders'][0])
16 {
17 $providerId = $result['statisticProviders'][0]['id'];
18 }
19 else
20 {
21 $providerId = Line\StatisticsProvider::add($params)['statisticProvider']['id'];
22 }
23
24 return $providerId > 0;
25 }
26}