| Current Path : /var/www/homesaver/www/bitrix/modules/report/lib/visualconstructor/helper/ |
| 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;
}
}
}