Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/sale/lib/tradingplatform/ |
Upload File : |
<?php namespace Bitrix\Sale\TradingPlatform; use Bitrix\Main\Entity; use Bitrix\Main\Localization\Loc; Loc::loadMessages(__FILE__); /** * Class MapEntityTable * * Fields: * <ul> * <li> ID int mandatory * <li> TRADING_PLATFORM_ID int mandatory * <li> CODE string(255) mandatory * </ul> * * @package Bitrix\Sale\TradingPlatform * * DO NOT WRITE ANYTHING BELOW THIS * * <<< ORMENTITYANNOTATION * @method static EO_MapEntity_Query query() * @method static EO_MapEntity_Result getByPrimary($primary, array $parameters = []) * @method static EO_MapEntity_Result getById($id) * @method static EO_MapEntity_Result getList(array $parameters = []) * @method static EO_MapEntity_Entity getEntity() * @method static \Bitrix\Sale\TradingPlatform\EO_MapEntity createObject($setDefaultValues = true) * @method static \Bitrix\Sale\TradingPlatform\EO_MapEntity_Collection createCollection() * @method static \Bitrix\Sale\TradingPlatform\EO_MapEntity wakeUpObject($row) * @method static \Bitrix\Sale\TradingPlatform\EO_MapEntity_Collection wakeUpCollection($rows) */ class MapEntityTable extends Entity\DataManager { public static function getFilePath() { return __FILE__; } public static function getTableName() { return 'b_sale_tp_map_entity'; } public static function getMap() { return array( 'ID' => array( 'data_type' => 'integer', 'primary' => true, 'autocomplete' => true, 'title' => Loc::getMessage('TRADING_PLATFORM_MAP_ENTITY_ENTITY_ID_FIELD'), ), 'TRADING_PLATFORM_ID' => array( 'data_type' => 'integer', 'required' => true, 'title' => Loc::getMessage('TRADING_PLATFORM_MAP_ENTITY_ENTITY_TRADING_PLATFORM_ID_FIELD'), ), 'CODE' => array( 'data_type' => 'string', 'required' => true, 'validation' => array(__CLASS__, 'validateCode'), 'title' => Loc::getMessage('TRADING_PLATFORM_MAP_ENTITY_ENTITY_CODE_FIELD'), ), ); } public static function validateCode() { return array( new Entity\Validator\Length(null, 255), ); } }