• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/Sitemap/Internals/Entity.php
  • Класс: BitrixSeoSitemapInternalsEntityTable
  • Вызов: EntityTable::getMap
static function getMap()
{
	$fieldsMap = array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'ENTITY_TYPE' => array(
			'data_type' => 'string',
			'required' => true,
		),
		'ENTITY_ID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'SITEMAP_ID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'SITEMAP' => array(
			'data_type' => 'BitrixSeoSitemapInternalsSitemapTable',
			'reference' => array('=this.SITEMAP_ID' => 'ref.ID'),
		)
	);

	return $fieldsMap;
}