Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
taskoperation.php
1
<?php
2
3
namespace
Bitrix\Main
;
4
5
use Bitrix\Main\ORM\Data\Internal\DeleteByFilterTrait;
6
23
class
TaskOperationTable
extends
Entity\DataManager
24
{
25
use DeleteByFilterTrait;
26
27
public
static
function
getTableName
()
28
{
29
return
'b_task_operation'
;
30
}
31
32
public
static
function
getMap
()
33
{
34
return
array(
35
'TASK_ID'
=> array(
36
'data_type'
=>
'integer'
,
37
'primary'
=>
true
,
38
),
39
'OPERATION_ID'
=> array(
40
'data_type'
=>
'integer'
,
41
'primary'
=>
true
,
42
),
43
'OPERATION'
=> array(
44
'data_type'
=>
'Bitrix\Main\OperationTable'
,
45
'reference'
=> array(
'=this.OPERATION_ID'
=>
'ref.ID'
),
46
),
47
'TASK'
=> array(
48
'data_type'
=>
'Bitrix\Main\TaskTable'
,
49
'reference'
=> array(
'=this.TASK_ID'
=>
'ref.ID'
),
50
),
51
);
52
}
53
}
Bitrix\Main\TaskOperationTable
Definition
taskoperation.php:24
Bitrix\Main\TaskOperationTable\getMap
static getMap()
Definition
taskoperation.php:32
Bitrix\Main\TaskOperationTable\getTableName
static getTableName()
Definition
taskoperation.php:27
Bitrix\Main
modules
main
lib
taskoperation.php
Создано системой
1.10.0