• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/widget/formhandler.php
  • Класс: BitrixImOpenLinesWidgetFormHandler
  • Вызов: FormHandler::updateUser
private function updateUser(): bool
{
	$fieldsToUpdate = $this->getUserFieldsToUpdate();
	if (!empty($fieldsToUpdate))
	{
		$userClass = new CUser();
		$userClass->Update($this->userId, $fieldsToUpdate);
		ImUser::clearStaticCache();
	}

	return true;
}