• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/v2/BaseCollection.php
  • Класс: BitrixCatalogv2BaseCollection
  • Вызов: BaseCollection::isChanged
public function isChanged(): bool
{
	if ($this->parentChanged)
	{
		return true;
	}

	if (!empty($this->removedItems))
	{
		return true;
	}

	foreach ($this->items as $entity)
	{
		if ($entity->isChanged())
		{
			return true;
		}
	}

	return false;
}