• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/userfield/userfieldhistory.php
  • Класс: Bitrix\Crm\UserField\UserFieldHistory
  • Вызов: UserFieldHistory::synchronize
static function synchronize($entityTypeID)
{
	self::load();
	self::$items[$entityTypeID] = new DateTime();
	self::save();

	// clear cache on any uf settings change
	$factory = Container::getInstance()->getFactory((int)$entityTypeID);
	if ($factory)
	{
		$factory->clearFieldsCollectionCache();
	}
}