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/cvetdv.ru/bitrix/modules/yandex.market/lib/trading/entity/reference/ |
Upload File : |
<?php namespace Yandex\Market\Trading\Entity\Reference; use Yandex\Market; use Bitrix\Main; abstract class Price { protected $environment; public function __construct(Environment $environment) { $this->environment = $environment; } /** * ����� ��������� ��� * * @return array{ID: string, VALUE: string}[] */ public function getSourceEnum() { throw new Market\Exceptions\NotImplementedMethod(static::class, 'getSourceEnum'); } /** * ����� ����� ��� * * @return array{ID: string, VALUE: string}[] */ public function getTypeEnum() { throw new Market\Exceptions\NotImplementedMethod(static::class, 'getTypeEnum'); } /** * ��� ��� �� ������� �� ����� ������������ * * @param int[]|null $userGroups * * @return string[] */ public function getTypeDefaults(array $userGroups = null) { throw new Market\Exceptions\NotImplementedMethod(static::class, 'getTypeDefaults'); } /** * ��������� �� ������� ����� ���� * * @param Main\Type\DateTime $date * @param array $context * * @return bool */ public function needRefresh(Main\Type\DateTime $date, array $context = []) { throw new Market\Exceptions\NotImplementedMethod(static::class, 'needRefresh'); } /** * ������ �������� ������� * * @param array[] $context * @param Main\Type\DateTime|null $date * @param int|null $offset * @param int $limit * * @return int[] */ public function getChanged(array $context = [], Main\Type\DateTime $date = null, $offset = null, $limit = 500) { throw new Market\Exceptions\NotImplementedMethod(static::class, 'getChanged'); } /** * ��� �� ����� * * @param int[] $productIds * @param array<int, float[]>|null $quantities * @param array $context * * @return array{ID: int, PRICE: float, BASE_PRICE: float, CURRENCY: string}[] */ public function getPrices($productIds, $quantities = null, array $context = []) { throw new Market\Exceptions\NotImplementedMethod(static::class, 'getPrices'); } /** * ����� �� ����� ������� �� ����������� ������ * * @param int[] $productIds * @param array<int, float[]>|null $quantities * @param array $context * * @return array<int|string, array> */ public function getBasketData($productIds, $quantities = null, array $context = []) { return []; } }