• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/searchengine.php
  • Класс: BitrixSeoSearchEngineTable
  • Вызов: SearchEngineTable::getMap
static function getMap()
{
	$fieldsMap = array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'CODE' => array(
			'data_type' => 'string',
			'required' => true,
		),
		'ACTIVE' => array(
			'data_type' => 'boolean',
			'values' => array(self::INACTIVE, self::ACTIVE)
		),
		'SORT' => array(
			'data_type' => 'integer',
		),
		'NAME' => array(
			'data_type' => 'string',
		),
		'CLIENT_ID' => array(
			'data_type' => 'string',
		),
		'CLIENT_SECRET' => array(
			'data_type' => 'string',
		),
		'REDIRECT_URI' => array(
			'data_type' => 'string',
		),
		'SETTINGS' => array(
			'data_type' => 'text',
		),
	);

	return $fieldsMap;
}