1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
section.php
См. документацию.
1<?php
11namespace Bitrix\Sale\Internals;
12
13use Bitrix\Main\Entity;
14use Bitrix\Main\Localization\Loc;
15
16Loc::loadMessages(__FILE__);
17
34class SectionTable extends Entity\DataManager
35{
36 public static function getTableName()
37 {
38 return 'b_iblock_section';
39 }
40
41 public static function getMap()
42 {
43 return [
44 'ID' => [
45 'data_type' => 'integer',
46 'primary' => true,
47 'autocomplete' => true,
48 ],
49 'NAME' => [
50 'data_type' => 'string',
51 ]
52 ];
53 }
54}
static getMap()
Определения section.php:41
static getTableName()
Определения section.php:36