• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/orderprops_group.php
  • Класс: BitrixSaleInternalsOrderPropsGroupTable
  • Вызов: OrderPropsGroupTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'primary' => true,
			'autocomplete' => true,
			'data_type' => 'integer',
			'format' => '/^[0-9]{1,11}$/',
		),
		'PERSON_TYPE_ID' => array(
			'required' => true,
			'data_type' => 'integer',
			'format' => '/^[0-9]{1,11}$/',
		),
		'NAME' => array(
			'required' => true,
			'data_type' => 'string',
			'validation' => array(__CLASS__, 'getNameValidators'),
		),
		'CODE' => array(
			'data_type' => 'string',
			'validation' => array(__CLASS__, 'getCodeValidators'),
		),
		'SORT' => array(
			'data_type' => 'integer',
			'format' => '/^[0-9]{1,11}$/',
		),
	);
}