Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
company.php
1<?php
2
3
5
6
8
10 implements ICompany
11{
12
13 public function adds($list)
14 {
15 return $this
16 ->batch(Rest\Cmd\Registry::CRM_COMPANY_ADD_NAME, $list)
17 ->call();
18 }
19
20 public function getList($select=[], $filter, $order=[], $pageNavigation='')
21 {
22 return $this
23 ->cmd( Rest\Cmd\Registry::CRM_COMPANY_LIST_NAME, [
24 'select' => $select,
25 'filter' => $filter,
26 'order' => $order,
27 'pageNavigation' => $pageNavigation]
28 )
29 ->call();
30 }
31}
getList($select=[], $filter, $order=[], $pageNavigation='')
Definition company.php:20