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/blog/lib/integration/disk/ |
Upload File : |
<?php namespace Bitrix\Blog\Integration\Disk; use Bitrix\Main\Loader; use Bitrix\Disk\AttachedObject; class Transformation { public static function getStatus($params = array()) { $attachedIdList = ( is_array($params) && !empty($params['attachedIdList']) && is_array($params['attachedIdList']) ? $params['attachedIdList'] : array() ); if ( empty($params['attachedIdList']) || !Loader::includeModule('disk') || !method_exists('Bitrix\Disk\View\Video', 'isNeededLimitRightsOnTransformTime') ) { return false; } foreach($attachedIdList as $attachedId) { $attach = AttachedObject::getById($attachedId); $attachFile = $attach->getFile(); if ($attachFile && $attachFile->getView()->isNeededLimitRightsOnTransformTime()) { return true; } } return false; } }