• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/common.php
  • Класс: BitrixImCommon
  • Вызов: Common::getUserId
static function getUserId($userId = null)
{
	if (is_null($userId) && is_object($GLOBALS['USER']))
	{
		$userId = $GLOBALS['USER']->getId();
	}

	$userId = intval($userId);
	if (!$userId)
	{
		return false;
	}

	return $userId;
}