• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/logcomment.php
  • Класс: BitrixSocialnetworkLogCommentTable
  • Вызов: LogCommentTable::getMap
static function getMap()
{
	$fieldsMap = array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'LOG_ID' => array(
			'data_type' => 'integer',
		),
		'LOG' => array(
			'data_type' => 'BitrixSocialnetworkLogTable',
			'reference' => array('=this.LOG_ID' => 'ref.ID'),
		),
		'EVENT_ID' => array(
			'data_type' => 'string',
		),
		'USER_ID' => array(
			'data_type' => 'integer',
		),
		'MESSAGE' => array(
			'data_type' => 'text',
		),
		'SOURCE_ID' => array(
			'data_type' => 'integer',
		),
		'LOG_DATE' => array(
			'data_type' => 'datetime',
		),
		'SHARE_DEST' => array(
			'data_type' => 'string',
		),
		'RATING_TYPE_ID' => array(
			'data_type' => 'string',
		),
		'RATING_ENTITY_ID' => array(
			'data_type' => 'integer',
		),
	);

	return $fieldsMap;
}