Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/landing/lib/internals/ |
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/landing/lib/internals/templateref.php |
<?php namespace Bitrix\Landing\Internals; use \Bitrix\Main\Localization\Loc; use \Bitrix\Main\Entity; Loc::loadMessages(__FILE__); /** * Class TemplateRefTable * * DO NOT WRITE ANYTHING BELOW THIS * * <<< ORMENTITYANNOTATION * @method static EO_TemplateRef_Query query() * @method static EO_TemplateRef_Result getByPrimary($primary, array $parameters = array()) * @method static EO_TemplateRef_Result getById($id) * @method static EO_TemplateRef_Result getList(array $parameters = array()) * @method static EO_TemplateRef_Entity getEntity() * @method static \Bitrix\Landing\Internals\EO_TemplateRef createObject($setDefaultValues = true) * @method static \Bitrix\Landing\Internals\EO_TemplateRef_Collection createCollection() * @method static \Bitrix\Landing\Internals\EO_TemplateRef wakeUpObject($row) * @method static \Bitrix\Landing\Internals\EO_TemplateRef_Collection wakeUpCollection($rows) */ class TemplateRefTable extends Entity\DataManager { /** * Returns DB table name for entity. * @return string */ public static function getTableName() { return 'b_landing_template_ref'; } /** * Returns entity map definition. * @return array */ public static function getMap() { return array( 'ID' => new Entity\IntegerField('ID', array( 'primary' => true, 'autocomplete' => true, 'title' => 'ID' )), 'ENTITY_ID' => new Entity\IntegerField('ENTITY_ID', array( 'title' => Loc::getMessage('LANDING_TABLE_FIELD_ENTITY_ID'), 'required' => true )), 'ENTITY_TYPE' => new Entity\StringField('ENTITY_TYPE', array( 'title' => Loc::getMessage('LANDING_TABLE_FIELD_ENTITY_TYPE'), 'required' => true )), 'AREA' => new Entity\IntegerField('AREA', array( 'title' => Loc::getMessage('LANDING_TABLE_FIELD_AREA'), 'required' => true )), 'LANDING_ID' => new Entity\IntegerField('LANDING_ID', array( 'title' => Loc::getMessage('LANDING_TABLE_FIELD_LANDING_ID'), 'required' => true )) ); } }