Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
inheritedproperty.php
1<?php
2namespace Bitrix\Iblock;
3
6Loc::loadMessages(__FILE__);
7
24class InheritedPropertyTable extends Entity\DataManager
25{
31 public static function getTableName()
32 {
33 return 'b_iblock_iproperty';
34 }
35
41 public static function getMap()
42 {
43 return array(
44 'ID' => array(
45 'data_type' => 'integer',
46 'primary' => true,
47 'autocomplete' => true,
48 ),
49 'IBLOCK_ID' => array(
50 'data_type' => 'integer',
51 ),
52 'CODE' => array(
53 'data_type' => 'string',
54 ),
55 'ENTITY_TYPE' => array(
56 'data_type' => 'string',
57 ),
58 'ENTITY_ID' => array(
59 'data_type' => 'string',
60 ),
61 'TEMPLATE' => array(
62 'data_type' => 'string',
63 )
64 );
65 }
66}
static loadMessages($file)
Definition loc.php:64