├── .gitignore ├── Api ├── CancelRepositoryInterface.php ├── CaptureRepositoryInterface.php ├── CheckoutInformationRepositoryInterface.php ├── ConfigRepositoryInterface.php ├── Data │ ├── CheckoutInformationInterface.php │ └── ConfigInterface.php ├── EmailWhiteListRepositoryInterface.php ├── OrderInterface.php ├── OrderRepositoryInterface.php └── RefundRepositoryInterface.php ├── Block ├── Adminhtml │ ├── Form │ │ └── Button │ │ │ ├── BackButton.php │ │ │ ├── DeleteButton.php │ │ │ ├── GenericButton.php │ │ │ ├── SaveAndContinueButton.php │ │ │ └── SaveButton.php │ ├── System │ │ └── Config │ │ │ └── Form │ │ │ ├── Disable.php │ │ │ ├── ExtensionVersion.php │ │ │ └── WebhookId.php │ └── Whitelist │ │ ├── Import.php │ │ └── Import │ │ └── Form.php ├── Cancel.php ├── Cart │ └── Popup.php ├── Failure.php ├── Info.php ├── PopulateTamara.php ├── Product │ └── Popup.php ├── Success.php └── System │ └── Config │ └── UpdateMinMax.php ├── CHANGELOG.txt ├── Console └── Command │ ├── OrderStatusSync.php │ └── ScanOrder.php ├── Controller ├── Adminhtml │ └── Whitelist │ │ ├── Delete.php │ │ ├── Edit.php │ │ ├── Import.php │ │ ├── Index.php │ │ ├── MassDelete.php │ │ ├── NewAction.php │ │ ├── ProcessImport.php │ │ └── Save.php ├── Payment │ ├── Cancel.php │ ├── Check.php │ ├── Failure.php │ ├── Notification.php │ ├── PlaceOrder.php │ ├── Success.php │ └── Webhook.php └── Router.php ├── Cron └── OrderStatusSync.php ├── Gateway ├── Command │ └── AuthorizeCommand.php ├── Config │ ├── BaseConfig.php │ ├── InstalmentConfig.php │ ├── PayLaterConfig.php │ ├── PayNextMonthConfig.php │ └── PayNowConfig.php ├── Http │ ├── Client │ │ ├── AbstractClient.php │ │ └── AuthorizeClient.php │ └── TransferFactory.php ├── Request │ ├── AddressDataBuilder.php │ ├── CommonDataBuilder.php │ ├── ConsumerDataBuilder.php │ ├── ItemsDataBuilder.php │ └── MerchantUrlDataBuilder.php ├── Response │ └── AuthorizeResponse.php └── Validator │ ├── CountryValidator.php │ └── ResponseValidator.php ├── Helper ├── AbstractData.php ├── Cancel.php ├── Capture.php ├── Core.php ├── Invoice.php ├── Order.php ├── OrderAuthorization.php ├── Refund.php └── Transaction.php ├── LICENSE.txt ├── Model ├── Adapter │ ├── TamaraAdapter.php │ └── TamaraAdapterFactory.php ├── AddressRepository.php ├── Adminhtml │ └── Source │ │ └── PaymentAction.php ├── Cancel.php ├── CancelRepository.php ├── Capture.php ├── CaptureItem.php ├── CaptureRepository.php ├── CheckoutInformation.php ├── CheckoutInformationRepository.php ├── Config │ ├── Backend │ │ ├── ApiEnvironment.php │ │ ├── EnableWebHook.php │ │ └── Value.php │ └── Source │ │ ├── ApiEnvironment.php │ │ ├── AutomaticallyInvoice.php │ │ ├── Country.php │ │ ├── EmailTo │ │ └── Options.php │ │ ├── Order │ │ └── State │ │ │ ├── Cancelled │ │ │ └── Status.php │ │ │ ├── Capture │ │ │ └── Status.php │ │ │ ├── Failure │ │ │ └── Status.php │ │ │ ├── PendingPayment │ │ │ └── Status.php │ │ │ ├── Processing │ │ │ └── Status.php │ │ │ ├── Refund │ │ │ └── Status.php │ │ │ └── StateNew │ │ │ └── Status.php │ │ └── TriggerEvents │ │ └── Options.php ├── EmailWhiteList.php ├── EmailWhiteListRepository.php ├── Helper │ ├── CartHelper.php │ ├── LocaleHelper.php │ ├── OrderHelper.php │ ├── PaymentHelper.php │ ├── ProductHelper.php │ └── StoreHelper.php ├── Method │ ├── Checkout.php │ └── TamaraCheckout.php ├── Order.php ├── OrderRepository.php ├── Payment │ ├── AddressAdapter.php │ ├── OrderAdapter.php │ └── PaymentDataObject.php ├── Refund.php ├── RefundRepository.php ├── ResourceModel │ ├── Cancel.php │ ├── Cancel │ │ └── Collection.php │ ├── Capture.php │ ├── Capture │ │ ├── CaptureCollection.php │ │ └── CaptureItemCollection.php │ ├── CaptureItem.php │ ├── EmailWhiteList.php │ ├── EmailWhiteList │ │ ├── Collection.php │ │ └── Grid │ │ │ └── Collection.php │ ├── Order.php │ ├── Order │ │ └── Collection.php │ ├── Refund.php │ └── Refund │ │ └── Collection.php ├── ScanOrder.php └── Ui │ └── ConfigProvider.php ├── Observer ├── AbstractObserver.php ├── CreditmemoSaveAfter.php ├── OrderCancelAfter.php ├── OrderPaymentPlaceEnd.php ├── OrderSaveAfter.php └── PaymentMethodDisable.php ├── Plugin ├── CsrfValidatorSkip.php ├── Magento │ ├── Framework │ │ └── View │ │ │ └── Page │ │ │ └── Config │ │ │ └── DisableMixinJs.php │ └── Sales │ │ └── Model │ │ └── Order.php └── Model │ ├── Config.php │ └── Method │ ├── Adapter.php │ └── Available.php ├── README.md ├── Setup ├── InstallSchema.php ├── UpgradeData.php └── UpgradeSchema.php ├── Ui ├── Component │ └── Listing │ │ └── Column │ │ └── Whitelist │ │ └── EditActions.php └── DataProvider │ └── Whitelist │ ├── DataProvider.php │ └── Modifier │ └── Template.php ├── composer.json ├── etc ├── acl.xml ├── adminhtml │ ├── di.xml │ ├── menu.xml │ ├── routes.xml │ └── system.xml ├── config.xml ├── crontab.xml ├── csp_whitelist.xml ├── di.xml ├── events.xml ├── frontend │ ├── di.xml │ └── routes.xml ├── module.xml ├── payment.xml └── webapi.xml ├── i18n ├── ar_SA.csv └── en_US.csv ├── registration.php └── view ├── adminhtml ├── layout │ ├── config_whitelist_edit.xml │ ├── config_whitelist_import.xml │ └── config_whitelist_index.xml ├── templates │ └── system │ │ └── config │ │ └── update_min_max.phtml └── ui_component │ ├── whitelist_listing.xml │ └── whitelist_tamara_form.xml └── frontend ├── layout ├── catalog_product_view.xml ├── checkout_cart_index.xml ├── checkout_index_index.xml ├── default_head_blocks.xml ├── tamara_payment_cancel.xml ├── tamara_payment_failure.xml └── tamara_payment_success.xml ├── requirejs-config.js ├── templates ├── cancel.phtml ├── failure.phtml ├── payment_image.phtml ├── popup.phtml └── success.phtml └── web ├── css ├── source │ └── _module.less └── tamarapayment.css ├── images ├── cart.svg └── cart_ar.svg ├── js ├── model │ └── quote-mixin.js ├── paymentDisabled.js ├── price-box.js ├── swatch-renderer.js └── view │ ├── payment │ ├── method-renderer │ │ ├── tamara_pay_by_instalments.js │ │ ├── tamara_pay_by_instalments_10.js │ │ ├── tamara_pay_by_instalments_11.js │ │ ├── tamara_pay_by_instalments_12.js │ │ ├── tamara_pay_by_instalments_2.js │ │ ├── tamara_pay_by_instalments_4.js │ │ ├── tamara_pay_by_instalments_5.js │ │ ├── tamara_pay_by_instalments_6.js │ │ ├── tamara_pay_by_instalments_7.js │ │ ├── tamara_pay_by_instalments_8.js │ │ ├── tamara_pay_by_instalments_9.js │ │ ├── tamara_pay_by_instalments_abstract.js │ │ ├── tamara_pay_later.js │ │ ├── tamara_pay_next_month.js │ │ └── tamara_pay_now.js │ └── tamara_payments.js │ ├── success.js │ └── summary │ └── cart-items-mixin.js └── template ├── payment ├── tamara_pay_by_instalments.html ├── tamara_pay_by_instalments_10.html ├── tamara_pay_by_instalments_11.html ├── tamara_pay_by_instalments_12.html ├── tamara_pay_by_instalments_2.html ├── tamara_pay_by_instalments_4.html ├── tamara_pay_by_instalments_5.html ├── tamara_pay_by_instalments_6.html ├── tamara_pay_by_instalments_7.html ├── tamara_pay_by_instalments_8.html ├── tamara_pay_by_instalments_9.html ├── tamara_pay_later.html ├── tamara_pay_next_month.html └── tamara_pay_now.html ├── success.html └── summary └── cart-items.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | *.DS_Store 4 | -------------------------------------------------------------------------------- /Api/CancelRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Api/CancelRepositoryInterface.php -------------------------------------------------------------------------------- /Api/CaptureRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Api/CaptureRepositoryInterface.php -------------------------------------------------------------------------------- /Api/CheckoutInformationRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Api/CheckoutInformationRepositoryInterface.php -------------------------------------------------------------------------------- /Api/ConfigRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Api/ConfigRepositoryInterface.php -------------------------------------------------------------------------------- /Api/Data/CheckoutInformationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Api/Data/CheckoutInformationInterface.php -------------------------------------------------------------------------------- /Api/Data/ConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Api/Data/ConfigInterface.php -------------------------------------------------------------------------------- /Api/EmailWhiteListRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Api/EmailWhiteListRepositoryInterface.php -------------------------------------------------------------------------------- /Api/OrderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Api/OrderInterface.php -------------------------------------------------------------------------------- /Api/OrderRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Api/OrderRepositoryInterface.php -------------------------------------------------------------------------------- /Api/RefundRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Api/RefundRepositoryInterface.php -------------------------------------------------------------------------------- /Block/Adminhtml/Form/Button/BackButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Adminhtml/Form/Button/BackButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/Form/Button/DeleteButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Adminhtml/Form/Button/DeleteButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/Form/Button/GenericButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Adminhtml/Form/Button/GenericButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/Form/Button/SaveAndContinueButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Adminhtml/Form/Button/SaveAndContinueButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/Form/Button/SaveButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Adminhtml/Form/Button/SaveButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/System/Config/Form/Disable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Adminhtml/System/Config/Form/Disable.php -------------------------------------------------------------------------------- /Block/Adminhtml/System/Config/Form/ExtensionVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Adminhtml/System/Config/Form/ExtensionVersion.php -------------------------------------------------------------------------------- /Block/Adminhtml/System/Config/Form/WebhookId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Adminhtml/System/Config/Form/WebhookId.php -------------------------------------------------------------------------------- /Block/Adminhtml/Whitelist/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Adminhtml/Whitelist/Import.php -------------------------------------------------------------------------------- /Block/Adminhtml/Whitelist/Import/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Adminhtml/Whitelist/Import/Form.php -------------------------------------------------------------------------------- /Block/Cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Cancel.php -------------------------------------------------------------------------------- /Block/Cart/Popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Cart/Popup.php -------------------------------------------------------------------------------- /Block/Failure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Failure.php -------------------------------------------------------------------------------- /Block/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Info.php -------------------------------------------------------------------------------- /Block/PopulateTamara.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/PopulateTamara.php -------------------------------------------------------------------------------- /Block/Product/Popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Product/Popup.php -------------------------------------------------------------------------------- /Block/Success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/Success.php -------------------------------------------------------------------------------- /Block/System/Config/UpdateMinMax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Block/System/Config/UpdateMinMax.php -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /Console/Command/OrderStatusSync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Console/Command/OrderStatusSync.php -------------------------------------------------------------------------------- /Console/Command/ScanOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Console/Command/ScanOrder.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Whitelist/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Adminhtml/Whitelist/Delete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Whitelist/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Adminhtml/Whitelist/Edit.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Whitelist/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Adminhtml/Whitelist/Import.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Whitelist/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Adminhtml/Whitelist/Index.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Whitelist/MassDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Adminhtml/Whitelist/MassDelete.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Whitelist/NewAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Adminhtml/Whitelist/NewAction.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Whitelist/ProcessImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Adminhtml/Whitelist/ProcessImport.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Whitelist/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Adminhtml/Whitelist/Save.php -------------------------------------------------------------------------------- /Controller/Payment/Cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Payment/Cancel.php -------------------------------------------------------------------------------- /Controller/Payment/Check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Payment/Check.php -------------------------------------------------------------------------------- /Controller/Payment/Failure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Payment/Failure.php -------------------------------------------------------------------------------- /Controller/Payment/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Payment/Notification.php -------------------------------------------------------------------------------- /Controller/Payment/PlaceOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Payment/PlaceOrder.php -------------------------------------------------------------------------------- /Controller/Payment/Success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Payment/Success.php -------------------------------------------------------------------------------- /Controller/Payment/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Payment/Webhook.php -------------------------------------------------------------------------------- /Controller/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Controller/Router.php -------------------------------------------------------------------------------- /Cron/OrderStatusSync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Cron/OrderStatusSync.php -------------------------------------------------------------------------------- /Gateway/Command/AuthorizeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Command/AuthorizeCommand.php -------------------------------------------------------------------------------- /Gateway/Config/BaseConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Config/BaseConfig.php -------------------------------------------------------------------------------- /Gateway/Config/InstalmentConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Config/InstalmentConfig.php -------------------------------------------------------------------------------- /Gateway/Config/PayLaterConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Config/PayLaterConfig.php -------------------------------------------------------------------------------- /Gateway/Config/PayNextMonthConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Config/PayNextMonthConfig.php -------------------------------------------------------------------------------- /Gateway/Config/PayNowConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Config/PayNowConfig.php -------------------------------------------------------------------------------- /Gateway/Http/Client/AbstractClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Http/Client/AbstractClient.php -------------------------------------------------------------------------------- /Gateway/Http/Client/AuthorizeClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Http/Client/AuthorizeClient.php -------------------------------------------------------------------------------- /Gateway/Http/TransferFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Http/TransferFactory.php -------------------------------------------------------------------------------- /Gateway/Request/AddressDataBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Request/AddressDataBuilder.php -------------------------------------------------------------------------------- /Gateway/Request/CommonDataBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Request/CommonDataBuilder.php -------------------------------------------------------------------------------- /Gateway/Request/ConsumerDataBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Request/ConsumerDataBuilder.php -------------------------------------------------------------------------------- /Gateway/Request/ItemsDataBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Request/ItemsDataBuilder.php -------------------------------------------------------------------------------- /Gateway/Request/MerchantUrlDataBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Request/MerchantUrlDataBuilder.php -------------------------------------------------------------------------------- /Gateway/Response/AuthorizeResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Response/AuthorizeResponse.php -------------------------------------------------------------------------------- /Gateway/Validator/CountryValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Validator/CountryValidator.php -------------------------------------------------------------------------------- /Gateway/Validator/ResponseValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Gateway/Validator/ResponseValidator.php -------------------------------------------------------------------------------- /Helper/AbstractData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Helper/AbstractData.php -------------------------------------------------------------------------------- /Helper/Cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Helper/Cancel.php -------------------------------------------------------------------------------- /Helper/Capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Helper/Capture.php -------------------------------------------------------------------------------- /Helper/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Helper/Core.php -------------------------------------------------------------------------------- /Helper/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Helper/Invoice.php -------------------------------------------------------------------------------- /Helper/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Helper/Order.php -------------------------------------------------------------------------------- /Helper/OrderAuthorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Helper/OrderAuthorization.php -------------------------------------------------------------------------------- /Helper/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Helper/Refund.php -------------------------------------------------------------------------------- /Helper/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Helper/Transaction.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Model/Adapter/TamaraAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Adapter/TamaraAdapter.php -------------------------------------------------------------------------------- /Model/Adapter/TamaraAdapterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Adapter/TamaraAdapterFactory.php -------------------------------------------------------------------------------- /Model/AddressRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/AddressRepository.php -------------------------------------------------------------------------------- /Model/Adminhtml/Source/PaymentAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Adminhtml/Source/PaymentAction.php -------------------------------------------------------------------------------- /Model/Cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Cancel.php -------------------------------------------------------------------------------- /Model/CancelRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/CancelRepository.php -------------------------------------------------------------------------------- /Model/Capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Capture.php -------------------------------------------------------------------------------- /Model/CaptureItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/CaptureItem.php -------------------------------------------------------------------------------- /Model/CaptureRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/CaptureRepository.php -------------------------------------------------------------------------------- /Model/CheckoutInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/CheckoutInformation.php -------------------------------------------------------------------------------- /Model/CheckoutInformationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/CheckoutInformationRepository.php -------------------------------------------------------------------------------- /Model/Config/Backend/ApiEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Backend/ApiEnvironment.php -------------------------------------------------------------------------------- /Model/Config/Backend/EnableWebHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Backend/EnableWebHook.php -------------------------------------------------------------------------------- /Model/Config/Backend/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Backend/Value.php -------------------------------------------------------------------------------- /Model/Config/Source/ApiEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/ApiEnvironment.php -------------------------------------------------------------------------------- /Model/Config/Source/AutomaticallyInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/AutomaticallyInvoice.php -------------------------------------------------------------------------------- /Model/Config/Source/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/Country.php -------------------------------------------------------------------------------- /Model/Config/Source/EmailTo/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/EmailTo/Options.php -------------------------------------------------------------------------------- /Model/Config/Source/Order/State/Cancelled/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/Order/State/Cancelled/Status.php -------------------------------------------------------------------------------- /Model/Config/Source/Order/State/Capture/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/Order/State/Capture/Status.php -------------------------------------------------------------------------------- /Model/Config/Source/Order/State/Failure/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/Order/State/Failure/Status.php -------------------------------------------------------------------------------- /Model/Config/Source/Order/State/PendingPayment/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/Order/State/PendingPayment/Status.php -------------------------------------------------------------------------------- /Model/Config/Source/Order/State/Processing/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/Order/State/Processing/Status.php -------------------------------------------------------------------------------- /Model/Config/Source/Order/State/Refund/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/Order/State/Refund/Status.php -------------------------------------------------------------------------------- /Model/Config/Source/Order/State/StateNew/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/Order/State/StateNew/Status.php -------------------------------------------------------------------------------- /Model/Config/Source/TriggerEvents/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Config/Source/TriggerEvents/Options.php -------------------------------------------------------------------------------- /Model/EmailWhiteList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/EmailWhiteList.php -------------------------------------------------------------------------------- /Model/EmailWhiteListRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/EmailWhiteListRepository.php -------------------------------------------------------------------------------- /Model/Helper/CartHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Helper/CartHelper.php -------------------------------------------------------------------------------- /Model/Helper/LocaleHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Helper/LocaleHelper.php -------------------------------------------------------------------------------- /Model/Helper/OrderHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Helper/OrderHelper.php -------------------------------------------------------------------------------- /Model/Helper/PaymentHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Helper/PaymentHelper.php -------------------------------------------------------------------------------- /Model/Helper/ProductHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Helper/ProductHelper.php -------------------------------------------------------------------------------- /Model/Helper/StoreHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Helper/StoreHelper.php -------------------------------------------------------------------------------- /Model/Method/Checkout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Method/Checkout.php -------------------------------------------------------------------------------- /Model/Method/TamaraCheckout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Method/TamaraCheckout.php -------------------------------------------------------------------------------- /Model/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Order.php -------------------------------------------------------------------------------- /Model/OrderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/OrderRepository.php -------------------------------------------------------------------------------- /Model/Payment/AddressAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Payment/AddressAdapter.php -------------------------------------------------------------------------------- /Model/Payment/OrderAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Payment/OrderAdapter.php -------------------------------------------------------------------------------- /Model/Payment/PaymentDataObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Payment/PaymentDataObject.php -------------------------------------------------------------------------------- /Model/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Refund.php -------------------------------------------------------------------------------- /Model/RefundRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/RefundRepository.php -------------------------------------------------------------------------------- /Model/ResourceModel/Cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/Cancel.php -------------------------------------------------------------------------------- /Model/ResourceModel/Cancel/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/Cancel/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/Capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/Capture.php -------------------------------------------------------------------------------- /Model/ResourceModel/Capture/CaptureCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/Capture/CaptureCollection.php -------------------------------------------------------------------------------- /Model/ResourceModel/Capture/CaptureItemCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/Capture/CaptureItemCollection.php -------------------------------------------------------------------------------- /Model/ResourceModel/CaptureItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/CaptureItem.php -------------------------------------------------------------------------------- /Model/ResourceModel/EmailWhiteList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/EmailWhiteList.php -------------------------------------------------------------------------------- /Model/ResourceModel/EmailWhiteList/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/EmailWhiteList/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/EmailWhiteList/Grid/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/EmailWhiteList/Grid/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/Order.php -------------------------------------------------------------------------------- /Model/ResourceModel/Order/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/Order/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/Refund.php -------------------------------------------------------------------------------- /Model/ResourceModel/Refund/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ResourceModel/Refund/Collection.php -------------------------------------------------------------------------------- /Model/ScanOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/ScanOrder.php -------------------------------------------------------------------------------- /Model/Ui/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Model/Ui/ConfigProvider.php -------------------------------------------------------------------------------- /Observer/AbstractObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Observer/AbstractObserver.php -------------------------------------------------------------------------------- /Observer/CreditmemoSaveAfter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Observer/CreditmemoSaveAfter.php -------------------------------------------------------------------------------- /Observer/OrderCancelAfter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Observer/OrderCancelAfter.php -------------------------------------------------------------------------------- /Observer/OrderPaymentPlaceEnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Observer/OrderPaymentPlaceEnd.php -------------------------------------------------------------------------------- /Observer/OrderSaveAfter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Observer/OrderSaveAfter.php -------------------------------------------------------------------------------- /Observer/PaymentMethodDisable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Observer/PaymentMethodDisable.php -------------------------------------------------------------------------------- /Plugin/CsrfValidatorSkip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Plugin/CsrfValidatorSkip.php -------------------------------------------------------------------------------- /Plugin/Magento/Framework/View/Page/Config/DisableMixinJs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Plugin/Magento/Framework/View/Page/Config/DisableMixinJs.php -------------------------------------------------------------------------------- /Plugin/Magento/Sales/Model/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Plugin/Magento/Sales/Model/Order.php -------------------------------------------------------------------------------- /Plugin/Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Plugin/Model/Config.php -------------------------------------------------------------------------------- /Plugin/Model/Method/Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Plugin/Model/Method/Adapter.php -------------------------------------------------------------------------------- /Plugin/Model/Method/Available.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Plugin/Model/Method/Available.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/README.md -------------------------------------------------------------------------------- /Setup/InstallSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Setup/InstallSchema.php -------------------------------------------------------------------------------- /Setup/UpgradeData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Setup/UpgradeData.php -------------------------------------------------------------------------------- /Setup/UpgradeSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Setup/UpgradeSchema.php -------------------------------------------------------------------------------- /Ui/Component/Listing/Column/Whitelist/EditActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Ui/Component/Listing/Column/Whitelist/EditActions.php -------------------------------------------------------------------------------- /Ui/DataProvider/Whitelist/DataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Ui/DataProvider/Whitelist/DataProvider.php -------------------------------------------------------------------------------- /Ui/DataProvider/Whitelist/Modifier/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/Ui/DataProvider/Whitelist/Modifier/Template.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/composer.json -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /etc/adminhtml/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/adminhtml/menu.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/crontab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/crontab.xml -------------------------------------------------------------------------------- /etc/csp_whitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/csp_whitelist.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/events.xml -------------------------------------------------------------------------------- /etc/frontend/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/frontend/di.xml -------------------------------------------------------------------------------- /etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/frontend/routes.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/module.xml -------------------------------------------------------------------------------- /etc/payment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/payment.xml -------------------------------------------------------------------------------- /etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/etc/webapi.xml -------------------------------------------------------------------------------- /i18n/ar_SA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/i18n/ar_SA.csv -------------------------------------------------------------------------------- /i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/i18n/en_US.csv -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/registration.php -------------------------------------------------------------------------------- /view/adminhtml/layout/config_whitelist_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/adminhtml/layout/config_whitelist_edit.xml -------------------------------------------------------------------------------- /view/adminhtml/layout/config_whitelist_import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/adminhtml/layout/config_whitelist_import.xml -------------------------------------------------------------------------------- /view/adminhtml/layout/config_whitelist_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/adminhtml/layout/config_whitelist_index.xml -------------------------------------------------------------------------------- /view/adminhtml/templates/system/config/update_min_max.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/adminhtml/templates/system/config/update_min_max.phtml -------------------------------------------------------------------------------- /view/adminhtml/ui_component/whitelist_listing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/adminhtml/ui_component/whitelist_listing.xml -------------------------------------------------------------------------------- /view/adminhtml/ui_component/whitelist_tamara_form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/adminhtml/ui_component/whitelist_tamara_form.xml -------------------------------------------------------------------------------- /view/frontend/layout/catalog_product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/layout/catalog_product_view.xml -------------------------------------------------------------------------------- /view/frontend/layout/checkout_cart_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/layout/checkout_cart_index.xml -------------------------------------------------------------------------------- /view/frontend/layout/checkout_index_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/layout/checkout_index_index.xml -------------------------------------------------------------------------------- /view/frontend/layout/default_head_blocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/layout/default_head_blocks.xml -------------------------------------------------------------------------------- /view/frontend/layout/tamara_payment_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/layout/tamara_payment_cancel.xml -------------------------------------------------------------------------------- /view/frontend/layout/tamara_payment_failure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/layout/tamara_payment_failure.xml -------------------------------------------------------------------------------- /view/frontend/layout/tamara_payment_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/layout/tamara_payment_success.xml -------------------------------------------------------------------------------- /view/frontend/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/requirejs-config.js -------------------------------------------------------------------------------- /view/frontend/templates/cancel.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/templates/cancel.phtml -------------------------------------------------------------------------------- /view/frontend/templates/failure.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/templates/failure.phtml -------------------------------------------------------------------------------- /view/frontend/templates/payment_image.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/templates/payment_image.phtml -------------------------------------------------------------------------------- /view/frontend/templates/popup.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/templates/popup.phtml -------------------------------------------------------------------------------- /view/frontend/templates/success.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/templates/success.phtml -------------------------------------------------------------------------------- /view/frontend/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/css/source/_module.less -------------------------------------------------------------------------------- /view/frontend/web/css/tamarapayment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/css/tamarapayment.css -------------------------------------------------------------------------------- /view/frontend/web/images/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/images/cart.svg -------------------------------------------------------------------------------- /view/frontend/web/images/cart_ar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/images/cart_ar.svg -------------------------------------------------------------------------------- /view/frontend/web/js/model/quote-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/model/quote-mixin.js -------------------------------------------------------------------------------- /view/frontend/web/js/paymentDisabled.js: -------------------------------------------------------------------------------- 1 | window.tamara_checkout_disabled = true -------------------------------------------------------------------------------- /view/frontend/web/js/price-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/price-box.js -------------------------------------------------------------------------------- /view/frontend/web/js/swatch-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/swatch-renderer.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_10.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_11.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_12.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_2.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_4.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_5.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_6.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_7.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_8.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_9.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_abstract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_by_instalments_abstract.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_later.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_later.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_next_month.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_next_month.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/method-renderer/tamara_pay_now.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/method-renderer/tamara_pay_now.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/payment/tamara_payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/payment/tamara_payments.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/success.js -------------------------------------------------------------------------------- /view/frontend/web/js/view/summary/cart-items-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/js/view/summary/cart-items-mixin.js -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_by_instalments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_by_instalments.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_by_instalments_10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_by_instalments_10.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_by_instalments_11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_by_instalments_11.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_by_instalments_12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_by_instalments_12.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_by_instalments_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_by_instalments_2.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_by_instalments_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_by_instalments_4.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_by_instalments_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_by_instalments_5.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_by_instalments_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_by_instalments_6.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_by_instalments_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_by_instalments_7.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_by_instalments_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_by_instalments_8.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_by_instalments_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_by_instalments_9.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_later.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_later.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_next_month.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_next_month.html -------------------------------------------------------------------------------- /view/frontend/web/template/payment/tamara_pay_now.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/payment/tamara_pay_now.html -------------------------------------------------------------------------------- /view/frontend/web/template/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/success.html -------------------------------------------------------------------------------- /view/frontend/web/template/summary/cart-items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tamara-Technology/magento/HEAD/view/frontend/web/template/summary/cart-items.html --------------------------------------------------------------------------------