• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/helper/util.php
  • Класс: BitrixReportVisualConstructorHelperUtil
  • Вызов: Util::generateUserUniqueId
static function generateUserUniqueId($prefix = '')
{
	global $USER;
	$gid = ($prefix ? $prefix . '_' : '') . randString(25) . '_' . $USER->getId() . randString(8);
	return $gid;
}