• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar.php
  • Класс: CCalendar
  • Вызов: CCalendar::IsExtranetUser
static function IsExtranetUser($userId = 0)
{
	if (!$userId)
	{
		return true;
	}

	$departments = self::GetUserDepartment($userId);
	if (
		!$departments
		|| empty($departments)
	)
	{
		return true;
	}

	return false;
}