1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
fileinfotable.php
См. документацию.
1<?php
2
3namespace Bitrix\Sender\Internals\Model;
4
5use Bitrix\Main\Access\Entity\DataManager;
6use Bitrix\Main\ORM\Fields\DatetimeField;
7use Bitrix\Main\ORM\Fields\IntegerField;
8use Bitrix\Main\ORM\Fields\StringField;
9use Bitrix\Main\ORM\Fields\Validators\LengthValidator;
10use Bitrix\Main\Type\DateTime;
11
13{
17 public static function getTableName()
18 {
19 return 'b_sender_file_info';
20 }
21
25 public static function getMap()
26 {
27 return [
28 new IntegerField(
29 'ID', //ID from b_file
30 [
31 'primary' => true,
32 'title' => 'ID',
33 ]
34 ),
35 new StringField(
36 'FILE_NAME',
37 [
38 'validation' => function()
39 {
40 return[
41 new LengthValidator(null, 255),
42 ];
43 },
44 'title' => 'FILE_NAME',
45 ]
46 ),
47 ];
48 }
49}