%PDF- %PDF-
Direktori : /home/bitrix/www/bitrix/modules/sale/payment/paypal/ |
Current File : /home/bitrix/www/bitrix/modules/sale/payment/paypal/result_rec.php |
<?if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true) die();?><? use \Bitrix\Sale\Order; $request = \Bitrix\Main\Application::getInstance()->getContext()->getRequest(); $entityId = ($request->get('custom') !== null) ? $request->get("custom") : $request->get("cm"); list($orderId, $paymentId) = \Bitrix\Sale\PaySystem\Manager::getIdsByPayment($entityId); if ($orderId > 0) { /** @var \Bitrix\Sale\Order $order */ $order = Order::load($orderId); if ($order) { /** @var \Bitrix\Sale\PaymentCollection $paymentCollection */ $paymentCollection = $order->getPaymentCollection(); if ($paymentCollection && $paymentId > 0) { /** @var \Bitrix\Sale\Payment $payment */ $payment = $paymentCollection->getItemById($paymentId); if ($payment) { $service = \Bitrix\Sale\PaySystem\Manager::getObjectById($payment->getPaymentSystemId()); if ($service) $service->processRequest($request); } } } }