Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
common.php
1
<?php
2
namespace
Bitrix\Im\Integration\Crm
;
3
4
use \Bitrix\Main\Loader;
5
6
class
Common
7
{
14
public
static
function
getLink
($type, $id =
null
)
15
{
16
if
(!Loader::includeModule(
'crm'
))
17
{
18
return
false
;
19
}
20
21
$defaultValue =
false
;
22
if
(is_null($id))
23
{
24
$defaultValue =
true
;
25
$id = 0;
26
}
27
28
$result = \CCrmOwnerType::GetEntityShowPath(\CCrmOwnerType::ResolveID($type), $id,
false
);
29
30
if
($defaultValue)
31
{
32
$result = str_replace($id,
'#ID#'
, $result);
33
}
34
35
return
$result;
36
}
37
}
Bitrix\Im\Integration\Crm\Common
Definition
common.php:7
Bitrix\Im\Integration\Crm\Common\getLink
static getLink($type, $id=null)
Definition
common.php:14
Bitrix\Im\Integration\Crm
Definition
common.php:2
modules
im
lib
integration
crm
common.php
Создано системой
1.10.0