• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/integration/sender/connectors/contact.php
  • Класс: Bitrix\Sender\Integration\Sender\Connectors\Contact
  • Вызов: Contact::getUiFilterFields
static function getUiFilterFields()
{
	$list = array();

	$list[] = array(
		"id" => "LIST_ID",
		"name" => Loc::getMessage('SENDER_INTEGRATION_SENDER_CONNECTOR_CONTACT_FILTER_LIST_ID'),
		"type" => "list",
		"items" => ListTable::getList(array('select' => array('VALUE' => 'ID', 'NAME')))->fetchAll(),
		"default" => true
	);

	return $list;
}