• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/item/field/collection/item.php
  • Класс: BitrixTasksItemFieldCollectionItem
  • Вызов: Item::checkValue
public function checkValue($value, $key, $item, array $parameters = array())
{
	$result = static::obtainResultInstance($parameters);

	// check each element of the collection
	foreach($value as $subItem)
	{
		$subItem->checkData($result);
	}

	return $result->isSuccess();
}