Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/report/lib/visualconstructor/helper/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/report/lib/visualconstructor/helper/analytic.php

<?php
namespace Bitrix\Report\VisualConstructor\Helper;
use Bitrix\Main\Config\Option;
use Bitrix\Main\Loader;

/**
 * Class Analytic
 */
class Analytic
{
	/**
	 * @TODO maybe need to add some logic of access for different analytic pages
	 *
	 * @return bool
	 */
	public static function isEnable()
	{
		if (Loader::includeModule('crm'))
		{
			return \CCrmPerms::IsAccessEnabled();
		}
		else
		{
			return false;
		}
	}
}