%PDF- %PDF-
Direktori : /proc/self/root/home/bitrix/www/bitrix/modules/iblock/lib/ |
Current File : //proc/self/root/home/bitrix/www/bitrix/modules/iblock/lib/inheritedproperty.php |
<?php namespace Bitrix\Iblock; use Bitrix\Main\Entity; use Bitrix\Main\Localization\Loc; Loc::loadMessages(__FILE__); class InheritedPropertyTable extends Entity\DataManager { /** * Returns DB table name for entity * * @return string */ public static function getTableName() { return 'b_iblock_iproperty'; } /** * Returns entity map definition. * * @return array */ public static function getMap() { return array( 'ID' => array( 'data_type' => 'integer', 'primary' => true, 'autocomplete' => true, ), 'IBLOCK_ID' => array( 'data_type' => 'integer', ), 'CODE' => array( 'data_type' => 'string', ), 'ENTITY_TYPE' => array( 'data_type' => 'string', ), 'ENTITY_ID' => array( 'data_type' => 'string', ), 'TEMPLATE' => array( 'data_type' => 'string', ) ); } }