uawdijnntqw1x1x1
IP : 18.223.239.15
Hostname : axolotl
Kernel : Linux axolotl 4.9.0-13-amd64 #1 SMP Debian 4.9.228-1 (2020-07-05) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
www
/
axolotl
/
data
/
www
/
ekb.axolotls.ru
/
bitrix
/
modules
/
recyclebin
/
lib
/
integration
/
bitrix24.php
/
/
<? /** * This class is for internal use only, not a part of public API. * It can be changed at any time without notification. * * @access private */ namespace Bitrix\Recyclebin\Integration; use Bitrix\Bitrix24\Feature; use Bitrix\Recyclebin\Internals\User; abstract class Bitrix24 extends \Bitrix\Recyclebin\Integration { const MODULE_NAME = 'bitrix24'; public static function getSettingsURL() { if(!static::includeModule()) { return ''; } return \CBitrix24::PATH_CONFIGS; } public static function checkToolAvailable($toolName) { if($GLOBALS['__TASKS_DEVEL_ENV__']) { return true; } if(!static::includeModule()) // box installation, say yes { return true; } return \CBitrix24BusinessTools::isToolAvailable(User::getCurrentUserId(), $toolName); } public static function checkFeatureEnabled($featureName) { if($GLOBALS['__TASKS_DEVEL_ENV__']) { return true; } if(!static::includeModule()) // box installation, say yes { return true; } if(Feature::isFeatureEnabled($featureName)) // already payed, or trial is on = yes { return true; } return false; } public static function isLicensePaid() { if(!static::includeModule()) // box installation is like a free license in terms of bitrix24 { return true; } return \CBitrix24::isLicensePaid(); } public static function isLicenseShareware() { if(!static::includeModule()) // box installation is not a shareware, its like a "freeware" in terms of bitrix24 { return false; } $type = \CBitrix24::getLicenseType(); // todo: could be more custom licenses return $type == 'nfr' || $type == 'bis_inc' || $type == 'edu' || $type == 'startup'; } }
/var/www/axolotl/data/www/ekb.axolotls.ru/bitrix/modules/recyclebin/lib/integration/bitrix24.php