Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
callbacksubscription.php
1<?php
9
13
14Loc::loadMessages(__FILE__);
15
33class CallbackSubscriptionTable extends Entity\DataManager
34{
40 public static function getTableName()
41 {
42 return 'b_seo_service_subscription';
43 }
44
50 public static function getMap()
51 {
52 return array(
53 'ID' => array(
54 'data_type' => 'integer',
55 'primary' => true,
56 'autocomplete' => true,
57 ),
58 'DATE_INSERT' => array(
59 'data_type' => 'datetime',
60 'default_value' => new DateTime(),
61 ),
62 'TYPE' => array(
63 'data_type' => 'string',
64 'required' => true,
65 ),
66 'GROUP_ID' => array(
67 'data_type' => 'string',
68 'required' => true,
69 ),
70 'CALLBACK_SERVER_ID' => array(
71 'data_type' => 'string',
72 'required' => false,
73 ),
74 'HAS_AUTH' => array(
75 'data_type' => 'boolean',
76 'default_value' => 'N',
77 'values' => array('N', 'Y'),
78 'required' => true,
79 ),
80 );
81 }
82}
static loadMessages($file)
Definition loc.php:64