1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
moduletable.php
См. документацию.
1<?php
2
9
10namespace Bitrix\Main;
11
12use Bitrix\Main\ORM\Data;
13use Bitrix\Main\ORM\Fields;
14
32{
33 public static function getTableName()
34 {
35 return 'b_module';
36 }
37
38 public static function getMap()
39 {
40 return [
41 (new Fields\StringField('ID'))
42 ->configurePrimary(),
43
44 (new Fields\DatetimeField('DATE_ACTIVE')),
45 ];
46 }
47}
static getMap()
Определения moduletable.php:38
static getTableName()
Определения moduletable.php:33