Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
context.php
1<?php
2
4
6
23class ContextTable extends Entity\DataManager
24{
25 public static function getTableName()
26 {
27 return 'b_conv_context';
28 }
29
30 public static function getMap()
31 {
32 return array(
33 new Entity\IntegerField('ID' , array('primary' => true, 'autocomplete' => true)),
34 new Entity\StringField ('SNAPSHOT', array('required' => true, 'size' => 64)),
35 );
36 }
37
38 public static function getFilePath()
39 {
40 return __FILE__;
41 }
42}