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

	foreach ($this->getChildCollections() as $childCollection)
	{
		if ($childCollection->isChanged())
		{
			return true;
		}
	}

	return false;
}