• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/blacklist.php
  • Класс: BitrixVoximplantBlacklistTable
  • Вызов: BlacklistTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
			'title' => Loc::getMessage('BLACKLIST_ENTITY_ID_FIELD'),
		),
		'PHONE_NUMBER' => array(
			'data_type' => 'string',
			'validation' => array(__CLASS__, 'validatePhoneNumber'),
			'title' => Loc::getMessage('BLACKLIST_ENTITY_PHONE_NUMBER_FIELD'),
		),
		'NUMBER_STRIPPED' => array(
			'data_type' => 'string',
		),
		'NUMBER_E164' => array(
			'data_type' => 'string',
		),
		'INSERTED' => array(
			'data_type' => 'datetime',

		)
	);
}