• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/source/blockfilter.php
  • Класс: BitrixLandingSourceBlockFilter
  • Вызов: BlockFilter::createRow
static function createRow(string $name, string $key, array $value)
{
	$name = trim($name);
	$key = trim($key);
	if ($name === '' || $key === '' || empty($value))
	{
		return null;
	}
	return [
		'name' => $name,
		'key' => $key,
		'value' => $value
	];
}