Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/socialnetwork/lib/Collab/ |
Upload File : |
<?php declare(strict_types=1); namespace Bitrix\Socialnetwork\Collab; use Bitrix\Bitrix24; use Bitrix\Main\Config\Configuration; use Bitrix\Main\Config\Option; use Bitrix\Main\Loader; use Bitrix\Socialnetwork\Integration\Intranet\Settings; class CollabFeature { public const FEATURE_ID = 'socialnetwork_collab'; public const OPTION_NAME = 'feature_socialnetwork_collab'; public static function isFeatureEnabled(): bool { if (!Loader::includeModule('bitrix24')) { return true; } return Bitrix24\Feature::isFeatureEnabled(self::FEATURE_ID); } public static function isFeatureEnabledInPortalSettings(): bool { return (new Settings())->isToolAvailable(Settings::SONET_TOOLS['collab']); } public static function isOn(): bool { if (static::isDevMode()) { return true; } return (bool)Option::get('socialnetwork', self::OPTION_NAME, true); } public static function turnOn(): void { Option::set('socialnetwork', self::OPTION_NAME, true); } public static function turnOff(): void { Option::delete('socialnetwork', ['name' => self::OPTION_NAME]); } public static function isDevMode(): bool { $exceptionHandling = Configuration::getValue('exception_handling'); return !empty($exceptionHandling['debug']); } }