Your IP : 3.145.191.247


Current Path : /var/www/www-root/data/www.catalog.monolith-realty.ru/bitrix/modules/forum/lib/provider/
Upload File :
Current File : /var/www/www-root/data/www.catalog.monolith-realty.ru/bitrix/modules/forum/lib/provider/mobile.php

<?php

namespace Bitrix\Forum\Provider;

class Mobile
{
	/**
	 * Checks if the mobile app installed for the logged-in user
	 * @return bool
	 */
	public function isMobileAppInstalled(): bool
	{
		if (\CUserOptions::GetOption('mobile', 'iOsLastActivityDate') !== false)
		{
			return true;
		}

		if (\CUserOptions::GetOption('mobile', 'AndroidLastActivityDate') !== false)
		{
			return true;
		}

		return false;
	}
}