Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
deal.php
1<?php
2
3
5
6
8
10 implements IDeal
11{
12 public function adds($list)
13 {
14 return $this
15 ->batch(Rest\Cmd\Registry::CRM_DEAL_ADD_NAME, $list)
16 ->call();
17 }
18
19 public function contactItemsGet($id)
20 {
21 return $this
23 'id' => $id])
24 ->call();
25 }
26
27 public function contactItemsSet($id, $items)
28 {
29 return $this
31 'id' => $id,
32 'items' => $items])
33 ->call();
34 }
35}