• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/applang.php
  • Класс: BitrixRestAppLangTable
  • Вызов: AppLangTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
		),
		'APP_ID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'LANGUAGE_ID' => array(
			'data_type' => 'string',
			'required' => true,
			'validation' => array(__CLASS__, 'validateLanguageId'),
		),
		'MENU_NAME' => array(
			'data_type' => 'string',
			'validation' => array(__CLASS__, 'validateMenuName'),
		),
		'APP' => array(
			'data_type' => 'BitrixRestAppTable',
			'reference' => array('=this.APP_ID' => 'ref.ID'),
		),
	);
}