1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
accessrolerelationtable.php
См. документацию.
1<?php
2
9
10namespace Bitrix\Main\Access\Role;
11
12use Bitrix\Main\Access\Entity\DataManager;
13use Bitrix\Main\ORM\Fields;
14
16{
17 public static function getMap()
18 {
19 return [
20 new Fields\IntegerField('ID', [
21 'autocomplete' => true,
22 'primary' => true
23 ]),
24 new Fields\IntegerField('ROLE_ID', [
25 'required' => true
26 ]),
27 new Fields\StringField('RELATION', [
28 'required' => true
29 ])
30 ];
31 }
32}