Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
access.php
1<?php
2
4
6
7Loc::loadMessages(__FILE__);
8
35{
41 public static function getTableName()
42 {
43 return 'b_calendar_access';
44 }
45
51 public static function getMap()
52 {
53 return [
54 (new StringField('ACCESS_CODE'))
55 ->configurePrimary()
56 ->configureSize(100)
57 ,
58 (new IntegerField('TASK_ID'))
59 ->configurePrimary()
60 ,
61 (new StringField('SECT_ID'))
62 ->configurePrimary()
63 ->configureSize(100)
64 ,
65 ];
66 }
67}
static loadMessages($file)
Definition loc.php:64