Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
callbackregistry.php
1<?php
2
4
6
24class CallbackRegistryTable extends Main\Entity\DataManager
25{
31 public static function getTableName()
32 {
33 return 'b_sale_documentgenerator_callback_registry';
34 }
35
41 public static function getMap()
42 {
43 return
44 [
45 'ID' =>
46 [
47 'data_type' => 'integer',
48 'primary' => true,
49 'autocomplete' => true,
50 ],
51 'DATE_INSERT' =>
52 [
53 'data_type' => 'datetime'
54 ],
55 'DOCUMENT_ID' =>
56 [
57 'data_type' => 'integer'
58 ],
59 'MODULE_ID' =>
60 [
61 'data_type' => 'string'
62 ],
63 'CALLBACK_CLASS' =>
64 [
65 'data_type' => 'string'
66 ],
67 'CALLBACK_METHOD' =>
68 [
69 'data_type' => 'string'
70 ],
71 ];
72 }
73}