![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/code/StripeIntegration/Payments/Block/Customer/ |
<?php namespace StripeIntegration\Payments\Block\Customer; class PaymentMethods extends \Magento\Framework\View\Element\Template { private $stripeCustomer; private $initParams; private $helper; private $serializer; public function __construct( \Magento\Framework\View\Element\Template\Context $context, \Magento\Framework\Serialize\SerializerInterface $serializer, \StripeIntegration\Payments\Helper\Generic $helper, \StripeIntegration\Payments\Helper\InitParams $initParams, array $data = [] ) { $this->serializer = $serializer; $this->stripeCustomer = $helper->getCustomerModel(); $this->helper = $helper; $this->initParams = $initParams; parent::__construct($context, $data); } public function getSavedPaymentMethods() { try { return $this->stripeCustomer->getSavedPaymentMethods(null, true); } catch (\Exception $e) { $this->helper->addError($e->getMessage()); $this->helper->logError($e->getMessage()); $this->helper->logError($e->getTraceAsString()); } } public function getInitParams() { try { $customer = $this->helper->getCustomerModel(); if (!$customer->existsInStripe()) $customer->createStripeCustomerIfNotExists(); return $this->initParams->getMyPaymentMethodsParams($customer->getStripeId()); } catch (\Exception $e) { $this->helper->logError($e->getMessage(), $e->getTraceAsString()); return $this->serializer->serialize([]); } } }