Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
sharing.php
1
<?php
2
namespace
Bitrix\Report\Internals
;
3
4
use
Bitrix\Main\Entity
;
5
use
Bitrix\Main\Localization\Loc
;
6
7
Loc::loadMessages
(__FILE__);
8
25
class
SharingTable
extends
Entity\DataManager
26
{
31
public
static
function
getTableName
()
32
{
33
return
'b_report_sharing'
;
34
}
35
40
public
static
function
getMap
()
41
{
42
$fieldsMap = array(
43
'ID'
=> array(
44
'data_type'
=>
'integer'
,
45
'primary'
=>
true
46
),
47
'REPORT_ID'
=> array(
48
'data_type'
=>
'integer'
,
49
'required'
=>
true
50
),
51
'LINK_REPORT'
=> array(
52
'data_type'
=>
'Bitrix\Report\ReportTable'
,
53
'reference'
=> array(
54
'=this.REPORT_ID'
=>
'ref.ID'
55
),
56
),
57
'ENTITY'
=> array(
58
'data_type'
=>
'string'
,
59
'required'
=>
true
60
),
61
'RIGHTS'
=> array(
62
'data_type'
=>
'string'
,
63
'required'
=>
true
64
)
65
);
66
67
return
$fieldsMap;
68
}
69
70
}
Bitrix\Main\Localization\Loc
Definition
loc.php:11
Bitrix\Main\Localization\Loc\loadMessages
static loadMessages($file)
Definition
loc.php:64
Bitrix\Main\ORM\Entity
Definition
entity.php:26
Bitrix\Report\Internals\SharingTable
Definition
sharing.php:26
Bitrix\Report\Internals\SharingTable\getMap
static getMap()
Definition
sharing.php:40
Bitrix\Report\Internals\SharingTable\getTableName
static getTableName()
Definition
sharing.php:31
Bitrix\Report\Internals
Definition
controller.php:3
modules
report
lib
internals
sharing.php
Создано системой
1.10.0