• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/comments/viewed/group.php
  • Класс: BitrixTasksCommentsViewedGroup
  • Вызов: Group::collapse
protected function collapse($list): array
{
	$result = [];
	foreach ($list as $row)
	{
		// for distinct GROUP_ID
		// if there is a MEMBER_TYPE field, then filtering was performed on it
		$result[$row['GROUP_ID']] = $row;
	}
	return array_values($result);
}