- Модуль: vote
- Путь к файлу: ~/bitrix/modules/vote/lib/channel.php
- Класс: BitrixVoteChannelGroupTable
- Вызов: ChannelGroupTable::getMap
static function getMap()
{
return array(
'ID' => array(
'data_type' => 'integer',
'primary' => true,
'autocomplete' => true,
'title' => Loc::getMessage('V_TABLE_FIELD_ID'),
),
'CHANNEL_ID' => array(
'data_type' => 'integer',
'title' => Loc::getMessage('V_TABLE_CHANNEL_ID'),
),
'GROUP_ID' => array(
'data_type' => 'integer',
'title' => Loc::getMessage('V_TABLE_GROUP_ID'),
),
'PERMISSION' => array(
'data_type' => 'enum',
'values' => array(1, 2, 3, 4),
'default_value' => 4,
'title' => Loc::getMessage('V_TABLE_PERMISSION')
)
);
}