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/sale/lib/delivery/restrictions/ |
Upload File : |
<?php namespace Bitrix\Sale\Delivery\Restrictions; use Bitrix\Sale\Delivery\Restrictions; use Bitrix\Main\Localization\Loc; use Bitrix\Sale\Internals\Entity; use Bitrix\Sale\Shipment; Loc::loadMessages(__FILE__); /** * Class ByMaxSize * Restricts delivery by basket items max size. * @package Bitrix\Sale\Delivery\Restrictions */ class ByMaxSize extends Restrictions\Base { public static function getClassTitle() { return Loc::getMessage("SALE_DLVR_RSTR_BY_MAXSIZE_NAME"); } public static function getClassDescription() { return Loc::getMessage("SALE_DLVR_RSTR_BY_MAXSIZE_DESCRIPT"); } /** * @param array $dimensionsList * @param array $restrictionParams * @param int $deliveryId * @return bool */ public static function check($dimensionsList, array $restrictionParams, $deliveryId = 0) { if(empty($restrictionParams)) return true; $maxSize = intval($restrictionParams["MAX_SIZE"]); if($maxSize <= 0) return true; foreach($dimensionsList as $dimensions) { if(!is_array($dimensions)) continue; foreach($dimensions as $dimension) { if(intval($dimension) <= 0) continue; if(intval($dimension) > $maxSize) return false; } } return true; } protected static function extractParams(Entity $entity) { $result = array(); if ($entity instanceof Shipment) { foreach($entity->getShipmentItemCollection() as $shipmentItem) { $basketItem = $shipmentItem->getBasketItem(); if(!$basketItem) continue; $dimensions = $basketItem->getField("DIMENSIONS"); if(is_string($dimensions)) $dimensions = unserialize($dimensions, ['allowed_classes' => false]); $result[] = $dimensions; } } return $result; } public static function getParamsStructure($entityId = 0) { return array( "MAX_SIZE" => array( 'TYPE' => 'NUMBER', 'DEFAULT' => "0", 'MIN' => 0, 'LABEL' => Loc::getMessage("SALE_DLVR_RSTR_BY_MAXSIZE_SIZE") ) ); } }