• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/classes/general/tasknotifications.php
  • Класс: CTaskNotifications
  • Вызов: CTaskNotifications::checkUserIsIntranet
static function checkUserIsIntranet($userId)
{
	if(!isset(self::$cache['INTRANET_USERS'][$userId]) || !self::$cacheData)
	{
		self::$cache['INTRANET_USERS'][$userId] = CTasksTools::IsIntranetUser($userId);
	}

	return self::$cache['INTRANET_USERS'][$userId];
}