PostSocnetRightsTable::getMap

  1. Bitrix24 API (v. 23.675.0)
  2. blog
  3. PostSocnetRightsTable
  4. getMap
  • Модуль: blog
  • Путь к файлу: ~/bitrix/modules/blog/lib/postsocnetrights.php
  • Класс: BitrixBlogPostSocnetRightsTable
  • Вызов: PostSocnetRightsTable::getMap
static function getMap()
{
	$fieldsMap = array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'POST_ID' => array(
			'data_type' => 'integer',
		),
		'POST' => array(
			'data_type' => 'BitrixBlogPost',
			'reference' => array('=this.POST_ID' => 'ref.ID')
		),
		'ENTITY_TYPE' => array(
			'data_type' => 'string'
		),
		'ENTITY_ID' => array(
			'data_type' => 'integer',
		),
		'ENTITY' => array(
			'data_type' => 'string'
		),
	);

	return $fieldsMap;
}

Добавить комментарий