• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/source/blockfilter.php
  • Класс: BitrixLandingSourceBlockFilter
  • Вызов: BlockFilter::checkRow
static function checkRow($row)
{
	if (empty($row) || !is_array($row))
	{
		return false;
	}
	if (empty($row['name']) || !is_string($row['name']))
	{
		return false;
	}
	if (empty($row['key']) || !is_string($row['key']))
	{
		return false;
	}
	if (empty($row['value']) || !is_array($row['value']))
	{
		return false;
	}
	return true;
}