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/cvetdv.ru/bitrix/modules/burlakastudio.realcommenter/lib/ |
Upload File : |
<?php /** * ����� "��������� ����������� 2.0" ��� ������� * �������� ���� �����: www.realcommenter.com * �������� ���� �����������: burlaka.studio * ����� � ����������: ������� ������� (AlexeyGfi) -> alexeygfi@gmail.com */ namespace Burlakastudio\Realcommenter; use Bitrix\Main\Localization\Loc; use Bitrix\Main\ORM\Data\DataManager; Loc::loadMessages(__FILE__); /** * Class GroupTable * * Fields: * <ul> * <li> ID int mandatory * <li> UF_NAME string optional * <li> UF_ACTIVE int optional * <li> UF_PAUSE int optional * <li> UF_VOTE_MULTIPLICAT int optional * </ul> * * @package Bitrix\Talk * @deprecated **/ class TALK_GROUPS_TABLE extends DataManager { /** * Returns DB table name for entity. * * @return string */ public static function getTableName() { return 'realcommenter_talk_group'; } /** * Returns entity map definition. * * @return array */ public static function getMap() { return [ 'ID' => [ 'data_type' => 'integer', 'primary' => true, 'autocomplete' => true, 'title' => Loc::getMessage('GROUP_ENTITY_ID_FIELD'), ], 'UF_NAME' => [ 'data_type' => 'text', 'title' => Loc::getMessage('GROUP_ENTITY_UF_NAME_FIELD'), ], 'UF_ACTIVE' => [ 'data_type' => 'integer', 'title' => Loc::getMessage('GROUP_ENTITY_UF_ACTIVE_FIELD'), ], 'UF_PAUSE' => [ 'data_type' => 'integer', 'title' => Loc::getMessage('GROUP_ENTITY_UF_PAUSE_FIELD'), ], 'UF_VOTE_MULTIPLICAT' => [ 'data_type' => 'integer', 'title' => Loc::getMessage('GROUP_ENTITY_UF_VOTE_MULTIPLICAT_FIELD'), ], 'UF_ADDI_FIELDS' => [ 'data_type' => 'string', 'title' => Loc::getMessage('GROUP_ENTITY_UF_ADDI_FIELDS'), ], // 'UF_ADDI_FIELDS_LIST' => [ // 'data_type' => 'integer', // 'title' => Loc::getMessage('GROUP_ENTITY_UF_VOTE_MULTIPLICAT_FIELD'), // ], 'UF_FIELDS_MODE' => [ 'data_type' => 'string', 'title' => Loc::getMessage('GROUP_ENTITY_UF_FIELDS_MODE'), ], ]; } } class_alias( '\Burlakastudio\Realcommenter\TALK_GROUPS_TABLE', '\Burlakastudio\Realcommenter\TALK_GROUPSTable' );