• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/call/calluser.php
  • Класс: BitrixImCallCallUser
  • Вызов: CallUser::isSeenRecently
public function isSeenRecently()
{
	if(!($this->lastSeen instanceof DateTime))
	{
		return false;
	}
	$now = time();
	$delta = $now - $this->lastSeen->getTimestamp();
	return $delta <= static::LAST_SEEN_THRESHOLD;
}