Your IP : 3.128.94.125


Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/landing/lib/restriction/
Upload File :
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/landing/lib/restriction/form.php

<?php
namespace Bitrix\Landing\Restriction;

use Bitrix\Bitrix24\Feature;
use Bitrix\Main\Loader;

class Form
{
	/**
	 * Checks restriction for creating minisites in forms
	 * @return bool
	 */
	public static function isMinisitesAllowed(): bool
	{
		if (Loader::includeModule('bitrix24'))
		{
			return Feature::isFeatureEnabled('landing_allow_minisites');
		}

		return true;
	}
}