├── .gitignore ├── README.md └── code ├── com_tjcpg ├── administrator │ ├── access.xml │ ├── assets │ │ ├── css │ │ │ ├── index.html │ │ │ └── tjcpg.css │ │ ├── images │ │ │ ├── index.html │ │ │ ├── l_com_tjcpg.png │ │ │ ├── l_tjcpgpayment.png │ │ │ ├── s_com_tjcpg.png │ │ │ └── s_tjcpgpayment.png │ │ └── index.html │ ├── config.xml │ ├── controller.php │ ├── controllers │ │ ├── index.html │ │ └── tjcpgpayment.php │ ├── elements │ │ ├── gatewayplg.php │ │ └── index.html │ ├── helpers │ │ ├── index.html │ │ └── tjcpg.php │ ├── index.html │ ├── language │ │ ├── en-GB.com_easy_tjcpg.ini~ │ │ ├── en-GB.com_tjcpg.ini │ │ ├── en-GB.com_tjcpg.ini~ │ │ ├── en-GB.com_tjcpg.sys.ini │ │ └── en-GB.com_tjcpg.sys.ini~ │ ├── models │ │ ├── index.html │ │ └── tjcpgpayment.php │ ├── sql │ │ ├── index.html │ │ ├── install_tjcpg_orders.sql │ │ └── install_tjcpg_orders.sql~ │ ├── tjcpg.php │ └── views │ │ ├── index.html │ │ └── tjcpgpayment │ │ ├── index.html │ │ ├── tmpl │ │ ├── default.php │ │ └── index.html │ │ └── view.html.php ├── site │ ├── controller.php │ ├── controllers │ │ ├── index.html │ │ └── payment.php │ ├── helpers │ │ ├── index.html │ │ └── tjcpg.php │ ├── index.html │ ├── language │ │ └── en-GB.com_tjcpg.ini │ ├── models │ │ ├── index.html │ │ ├── orders.php │ │ └── payment.php │ ├── router.php │ ├── tjcpg.php │ └── views │ │ ├── index.html │ │ ├── orders │ │ ├── index.html │ │ ├── tmpl │ │ │ ├── cancel.php │ │ │ └── order.php │ │ └── view.html.php │ │ └── payment │ │ ├── index.html │ │ ├── tmpl │ │ ├── default.php │ │ ├── default.xml │ │ ├── index.html │ │ └── pay.php │ │ └── view.html.php └── tjcpg.xml └── plugins ├── 2checkout ├── 2checkout.php ├── 2checkout.xml ├── 2checkout │ ├── helper.php │ ├── index.html │ └── tmpl │ │ ├── default.php │ │ └── form.php ├── da-DK │ └── da-DK.plg_payment_2checkout.ini ├── de-DE │ └── de-DE.plg_payment_2checkout.ini ├── en-GB │ └── en-GB.plg_payment_2checkout.ini ├── es-ES │ └── es-ES.plg_payment_2checkout.ini ├── fr-FR │ └── fr-FR.plg_payment_2checkout.ini ├── it-IT │ └── it-IT.plg_payment_2checkout.ini ├── nl-NL │ └── nl-NL.plg_payment_2checkout.ini ├── pt-PT │ └── pt-PT.plg_payment_2checkout.ini ├── sv-SE │ └── sv-SE.plg_payment_2checkout.ini └── th-TH │ └── th-TH.plg_payment_2checkout.ini ├── alphauserpoints ├── alphauserpoints.php ├── alphauserpoints.xml ├── alphauserpoints │ ├── com_jgive_aup.zip │ ├── element │ │ ├── aupfile.php │ │ ├── aupfilesjticketing.php │ │ └── aupfilesocialads.php │ ├── helper.php │ ├── index.html │ ├── jticketing_aup.zip │ ├── socialads_aup.zip │ └── tmpl │ │ ├── form.php │ │ └── index.html ├── da-DK │ └── da-DK.plg_payment_alphauserpoints.ini ├── de-DE │ ├── de-DE.plg_payment_alphapoints.ini │ └── de-DE.plg_payment_alphauserpoints.ini ├── en-GB │ └── en-GB.plg_payment_alphauserpoints.ini ├── es-ES │ └── es-ES.plg_payment_alphauserpoints.ini ├── it-IT │ └── it-IT.plg_payment_alphauserpoints.ini ├── nl-NL │ └── nl-NL.plg_payment_alphauserpoints.ini ├── pt-PT │ └── pt-PT.plg_payment_alphauserpoints.ini ├── sv-SE │ └── sv-SE.plg_payment_alphauserpoints.ini └── th-TH │ └── th-TH.plg_payment_alphauserpoints.ini ├── altauserpoints ├── altauserpoints.php ├── altauserpoints.xml ├── altauserpoints │ ├── com_jgive_aup.zip │ ├── element │ │ ├── aupfile.php │ │ ├── aupfilesjticketing.php │ │ └── aupfilesocialads.php │ ├── helper.php │ ├── index.html │ ├── jticketing_aup.zip │ ├── socialads_aup.zip │ └── tmpl │ │ ├── form.php │ │ └── index.html ├── da-DK │ └── da-DK.plg_payment_altauserpoints.ini ├── de-DE │ ├── de-DE.plg_payment_altapoints.ini │ └── de-DE.plg_payment_altauserpoints.ini ├── en-GB │ └── en-GB.plg_payment_altauserpoints.ini ├── es-ES │ └── es-ES.plg_payment_altauserpoints.ini ├── it-IT │ └── it-IT.plg_payment_altauserpoints.ini ├── nl-NL │ └── nl-NL.plg_payment_altauserpoints.ini ├── pt-PT │ └── pt-PT.plg_payment_altauserpoints.ini ├── sv-SE │ └── sv-SE.plg_payment_altauserpoints.ini └── th-TH │ └── th-TH.plg_payment_altauserpoints.ini ├── amazon ├── amazon.php ├── amazon.xml ├── amazon │ ├── helper.php │ ├── index.html │ ├── lib │ │ ├── ButtonGenerationWithSignature │ │ │ ├── ButtonGenerator.php │ │ │ ├── SignatureUtils.php │ │ │ ├── StandardButtonSample.php │ │ │ └── index.html │ │ ├── IPNAndReturnURLValidation │ │ │ ├── index.html │ │ │ └── src │ │ │ │ ├── .config.inc.php │ │ │ │ ├── IPNVerificationSampleCode.php │ │ │ │ ├── ReturnUrlVerificationSampleCode.php │ │ │ │ ├── SignatureUtilsForOutbound.php │ │ │ │ ├── ca-bundle.crt │ │ │ │ └── index.html │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── index.html │ └── tmpl │ │ ├── default.php │ │ └── index.html └── en-GB │ └── en-GB.plg_payment_amazon.ini ├── authorizenet ├── authorizenet.php ├── authorizenet.xml ├── authorizenet │ ├── helper.php │ ├── index.html │ ├── lib │ │ ├── AuthorizeNet.php │ │ ├── AuthorizeNetAIM.php │ │ ├── AuthorizeNetARB.php │ │ ├── AuthorizeNetCIM.php │ │ ├── AuthorizeNetCP.php │ │ ├── AuthorizeNetDPM.php │ │ ├── AuthorizeNetSIM.php │ │ ├── AuthorizeNetSOAP.php │ │ ├── AuthorizeNetTD.php │ │ ├── shared │ │ │ ├── AuthorizeNetRequest.php │ │ │ ├── AuthorizeNetResponse.php │ │ │ ├── AuthorizeNetTypes.php │ │ │ └── AuthorizeNetXMLResponse.php │ │ └── ssl │ │ │ └── cert.pem │ └── tmpl │ │ ├── default.php │ │ ├── default_bs3.php │ │ ├── index.html │ │ ├── recurring.php │ │ └── recurring_bs3.php ├── da-DK │ └── da-DK.plg_payment_authorizenet.ini ├── de-DE │ └── de-DE.plg_payment_authorizenet.ini ├── en-GB │ └── en-GB.plg_payment_authorizenet.ini ├── es-ES │ └── es-ES.plg_payment_authorizenet.ini ├── fr-FR │ └── fr-FR.plg_payment_authorizenet.ini ├── it-IT │ └── it-IT.plg_payment_authorizenet.ini ├── nl-NL │ └── nl-NL.plg_payment_authorizenet.ini ├── pt-PT │ └── pt-PT.plg_payment_authorizenet.ini ├── sv-SE │ └── sv-SE.plg_payment_authorizenet.ini └── th-TH │ └── th-TH.plg_payment_authorizenet.ini ├── blank ├── blank.php ├── blank.xml ├── blank │ ├── helper.php │ ├── index.html │ └── tmpl │ │ ├── default.php │ │ └── index.html ├── en-GB │ └── en-GB.plg_payment_blank.ini └── index.html ├── bycheck ├── bycheck.php ├── bycheck.xml ├── bycheck │ ├── helper.php │ └── tmpl │ │ ├── default.php │ │ ├── default_bs3.php │ │ └── index.html ├── da-DK │ └── da-DK.plg_payment_bycheck.ini ├── de-DE │ └── de-DE.plg_payment_bycheck.ini ├── en-GB │ └── en-GB.plg_payment_bycheck.ini ├── es-ES │ └── es-ES.plg_payment_bycheck.ini ├── it-IT │ └── it-IT.plg_payment_bycheck.ini ├── nl-NL │ └── nl-NL.plg_payment_bycheck.ini ├── pt-PT │ └── pt-PT.plg_payment_bycheck.ini ├── sv-SE │ └── sv-SE.plg_payment_bycheck.ini └── th-TH │ └── th-TH.plg_payment_bycheck.ini ├── byorder ├── byorder.php ├── byorder.xml ├── byorder │ ├── helper.php │ └── tmpl │ │ ├── default.php │ │ ├── default_bs3.php │ │ └── index.html ├── da-DK │ └── da-DK.plg_payment_byorder.ini ├── de-DE │ └── de-DE.plg_payment_byorder.ini ├── en-GB │ └── en-GB.plg_payment_byorder.ini ├── es-ES │ └── es-ES.plg_payment_byorder.ini ├── it-IT │ └── it-IT.plg_payment_byorder.ini ├── nl-NL │ └── nl-NL.plg_payment_byorder.ini ├── pt-PT │ └── pt-PT.plg_payment_byorder.ini ├── sv-SE │ └── sv-SE.plg_payment_byorder.ini └── th-TH │ └── th-TH.plg_payment_byorder.ini ├── ccavenue ├── ccavenue.php ├── ccavenue.xml ├── ccavenue │ ├── Crypto.php │ ├── helper.php │ └── tmpl │ │ └── default.php └── en-GB │ └── en-GB.plg_payment_ccavenue.ini ├── cod ├── cod.php ├── cod.xml ├── cod │ ├── helper.php │ └── tmpl │ │ ├── default.php │ │ └── index.html └── en-GB │ └── en-GB.plg_payment_cod.ini ├── easysocialpoints ├── easysocialpoints.php ├── easysocialpoints.xml ├── easysocialpoints │ ├── helper.php │ └── tmpl │ │ └── form.php └── en-GB │ └── en-GB.plg_payment_easysocialpoints.ini ├── epaydk ├── en-GB │ ├── en-GB.plg_payment_epaydk.ini │ └── en-GB.plg_payment_epaydk.sys.ini ├── epaydk.php ├── epaydk.xml └── epaydk │ ├── helper.php │ └── tmpl │ └── default.php ├── ewallet ├── en-GB │ └── en-GB.plg_payment_ewallet.ini ├── ewallet.php ├── ewallet.xml └── ewallet │ ├── helper.php │ ├── index.html │ └── tmpl │ ├── form.php │ └── index.html ├── eway ├── en-GB │ ├── en-GB.plg_payment_eway.ini │ └── en-GB.plg_payment_eway.sys.ini ├── eway.php ├── eway.xml └── eway │ ├── helper.php │ └── tmpl │ └── default.php ├── ewayrapid3 ├── en-GB │ ├── en-GB.plg_payment_ewayrapid3.ini │ └── en-GB.plg_payment_ewayrapid3.sys.ini ├── ewayrapid3.php ├── ewayrapid3.xml └── ewayrapid3 │ ├── form.php │ ├── helper.php │ ├── library │ ├── Rapid3.0.php │ ├── ReadMe.txt │ ├── config.ini │ └── index.html │ └── tmpl │ └── default.php ├── giropay ├── GiroCheckout_SDK │ ├── GiroCheckout_SDK.php │ ├── GiroCheckout_SDK_Notify.php │ ├── GiroCheckout_SDK_Request.php │ ├── api │ │ ├── GiroCheckout_SDK_AbstractApi.php │ │ ├── GiroCheckout_SDK_InterfaceApi.php │ │ ├── creditcard │ │ │ ├── GiroCheckout_SDK_CreditCardGetPKN.php │ │ │ ├── GiroCheckout_SDK_CreditCardRecurringTransaction.php │ │ │ └── GiroCheckout_SDK_CreditCardTransaction.php │ │ ├── directdebit │ │ │ ├── GiroCheckout_SDK_DirectDebitTransaction.php │ │ │ └── GiroCheckout_SDK_DirectDebitTransactionWithPaymentPage.php │ │ ├── eps │ │ │ ├── GiroCheckout_SDK_EpsBankstatus.php │ │ │ ├── GiroCheckout_SDK_EpsIssuerList.php │ │ │ └── GiroCheckout_SDK_EpsTransaction.php │ │ ├── girocode │ │ │ ├── GiroCheckout_SDK_GiroCodeCreateEpc.php │ │ │ ├── GiroCheckout_SDK_GiroCodeCreatePayment.php │ │ │ └── GiroCheckout_SDK_GiroCodeGetEpc.php │ │ ├── giropay │ │ │ ├── GiroCheckout_SDK_GiropayBankstatus.php │ │ │ ├── GiroCheckout_SDK_GiropayIDCheck.php │ │ │ ├── GiroCheckout_SDK_GiropayIssuerList.php │ │ │ ├── GiroCheckout_SDK_GiropayTransaction.php │ │ │ └── GiroCheckout_SDK_GiropayTransactionWithGiropayID.php │ │ ├── ideal │ │ │ ├── GiroCheckout_SDK_IdealIssuerList.php │ │ │ └── GiroCheckout_SDK_IdealPayment.php │ │ ├── paypal │ │ │ └── GiroCheckout_SDK_PaypalTransaction.php │ │ └── tools │ │ │ └── GiroCheckout_SDK_Tools_GetTransaction.php │ ├── cacert.pem │ ├── helper │ │ ├── GiroCheckout_SDK_Curl_helper.php │ │ ├── GiroCheckout_SDK_Debug_helper.php │ │ ├── GiroCheckout_SDK_Exception_helper.php │ │ ├── GiroCheckout_SDK_Hash_helper.php │ │ ├── GiroCheckout_SDK_ResponseCode_helper.php │ │ └── GiroCheckout_SDK_TransactionType_helper.php │ ├── log │ │ └── .htaccess │ └── logo │ │ └── Logo_giropay_60_px.jpg ├── de-DE │ └── de-DE.plg_payment_giropay.ini ├── en-GB │ └── en-GB.plg_payment_giropay.ini ├── giropay.php ├── giropay.xml ├── giropay │ ├── helper.php │ ├── index.html │ └── tmpl │ │ ├── default.php │ │ └── index.html └── index.html ├── gtpay ├── gtpay.php ├── gtpay.xml ├── gtpay │ ├── helper.php │ ├── index.html │ └── tmpl │ │ ├── default.php │ │ └── index.html ├── index.html └── languages │ └── en-GB │ ├── en-GB.plg_payment_gtpay.ini │ └── en-GB.plg_payment_gtpay.sys.ini ├── jomsocialpoints ├── da-DK │ └── da-DK.plg_payment_jomsocialpoints.ini ├── de-DE │ └── de-DE.plg_payment_jomsocialpoints.ini ├── en-GB │ └── en-GB.plg_payment_jomsocialpoints.ini ├── es-ES │ └── es-ES.plg_payment_jomsocialpoints.ini ├── fr-FR │ └── fr-FR.plg_payment_jomsocialpoints.ini ├── it-IT │ └── it-IT.plg_payment_jomsocialpoints.ini ├── jomsocialpoints.php ├── jomsocialpoints.xml ├── jomsocialpoints │ ├── helper.php │ └── tmpl │ │ ├── form.php │ │ └── index.html ├── nl-NL │ └── nl-NL.plg_payment_jomsocialpoints.ini ├── pt-PT │ └── pt-PT.plg_payment_jomsocialpoints.ini ├── sv-SE │ └── sv-SE.plg_payment_jomsocialpoints.ini └── th-TH │ └── th-TH.plg_payment_jomsocialpoints.ini ├── linkpoint ├── da-DK │ └── da-DK.plg_payment_linkpoint.ini ├── de-DE │ └── de-DE.plg_payment_linkpoint.ini ├── en-GB │ └── en-GB.plg_payment_linkpoint.ini ├── es-ES │ └── es-ES.plg_payment_linkpoint.ini ├── fr-FR │ └── fr-FR.plg_payment_linkpoint.ini ├── it-IT │ └── it-IT.plg_payment_linkpoint.ini ├── linkpoint.php ├── linkpoint.xml ├── linkpoint │ ├── 1909454871.pem │ ├── helper.php │ ├── lib │ │ ├── index.html │ │ └── lphp.php │ ├── staging_cert.pem │ └── tmpl │ │ ├── form.php │ │ ├── form_b3.php │ │ └── index.html ├── nl-NL │ └── nl-NL.plg_payment_linkpoint.ini ├── pt-PT │ └── pt-PT.plg_payment_linkpoint.ini ├── sv-SE │ └── sv-SE.plg_payment_linkpoint.ini └── th-TH │ └── th-TH.plg_payment_linkpoint.ini ├── offlinecard ├── languages │ └── en-GB │ │ ├── en-GB.plg_cpgdetails.ini │ │ ├── en-GB.plg_cpgdetails.sys.ini │ │ ├── en-GB.plg_offlinecard.ini │ │ └── en-GB.plg_offlinecard.sys.ini ├── offlinecard.php ├── offlinecard.xml └── offlinecard │ ├── index.html │ └── tmpl │ ├── ajax_loader.gif │ └── default.php ├── ogone ├── en-GB │ └── en-GB.plg_payment_ogone.ini ├── ogone.php ├── ogone.xml └── ogone │ ├── helper.php │ ├── index.html │ ├── lib │ ├── Exception.php │ ├── Form.php │ ├── LICENSE.txt │ ├── Response.php │ └── examples │ │ ├── form.php │ │ └── response.php │ ├── ogone_ogone.log │ └── tmpl │ ├── default.php │ └── index.html ├── pagseguro ├── en-GB │ └── en-GB.plg_payment_pagseguro.ini ├── lib │ ├── PagSeguroLibrary.php │ ├── config │ │ ├── PagSeguroConfig.class.php │ │ └── PagSeguroConfig.php │ ├── domain │ │ ├── PagSeguroAccountCredentials.class.php │ │ ├── PagSeguroAddress.class.php │ │ ├── PagSeguroCredentials.class.php │ │ ├── PagSeguroError.class.php │ │ ├── PagSeguroHttpStatus.class.php │ │ ├── PagSeguroItem.class.php │ │ ├── PagSeguroNotificationType.class.php │ │ ├── PagSeguroPaymentMethod.class.php │ │ ├── PagSeguroPaymentMethodCode.class.php │ │ ├── PagSeguroPaymentMethodType.class.php │ │ ├── PagSeguroPaymentRequest.class.php │ │ ├── PagSeguroPhone.class.php │ │ ├── PagSeguroSender.class.php │ │ ├── PagSeguroShipping.class.php │ │ ├── PagSeguroShippingType.class.php │ │ ├── PagSeguroTransaction.class.php │ │ ├── PagSeguroTransactionSearchResult.class.php │ │ ├── PagSeguroTransactionStatus.class.php │ │ ├── PagSeguroTransactionSummary.class.php │ │ └── PagSeguroTransactionType.class.php │ ├── exception │ │ └── PagSeguroServiceException.class.php │ ├── helper │ │ └── PagSeguroHelper.class.php │ ├── loader │ │ └── PagSeguroAutoLoader.class.php │ ├── log │ │ └── LogPagSeguro.class.php │ ├── parser │ │ ├── PagSeguroPaymentParser.class.php │ │ ├── PagSeguroPaymentParserData.class.php │ │ ├── PagSeguroServiceParser.class.php │ │ └── PagSeguroTransactionParser.class.php │ ├── resources │ │ ├── PagSeguroResources.class.php │ │ └── PagSeguroResources.php │ ├── service │ │ ├── PagSeguroConnectionData.class.php │ │ ├── PagSeguroNotificationService.class.php │ │ ├── PagSeguroPaymentService.class.php │ │ └── PagSeguroTransactionSearchService.class.php │ └── utils │ │ ├── PagSeguroHttpConnection.class.php │ │ └── PagSeguroXmlParser.class.php ├── pagseguro.php ├── pagseguro.xml └── pagseguro │ ├── helper.php │ └── tmpl │ └── default.php ├── pagseguro_jgive Not 3.0 ├── en-GB │ └── en-GB.plg_payment_pagseguro_jgive.ini ├── lib │ ├── PagSeguroLibrary.php │ ├── config │ │ ├── PagSeguroConfig.class.php │ │ └── PagSeguroConfig.php │ ├── domain │ │ ├── PagSeguroAccountCredentials.class.php │ │ ├── PagSeguroAddress.class.php │ │ ├── PagSeguroCredentials.class.php │ │ ├── PagSeguroError.class.php │ │ ├── PagSeguroHttpStatus.class.php │ │ ├── PagSeguroItem.class.php │ │ ├── PagSeguroNotificationType.class.php │ │ ├── PagSeguroPaymentMethod.class.php │ │ ├── PagSeguroPaymentMethodCode.class.php │ │ ├── PagSeguroPaymentMethodType.class.php │ │ ├── PagSeguroPaymentRequest.class.php │ │ ├── PagSeguroPhone.class.php │ │ ├── PagSeguroSender.class.php │ │ ├── PagSeguroShipping.class.php │ │ ├── PagSeguroShippingType.class.php │ │ ├── PagSeguroTransaction.class.php │ │ ├── PagSeguroTransactionSearchResult.class.php │ │ ├── PagSeguroTransactionStatus.class.php │ │ ├── PagSeguroTransactionSummary.class.php │ │ └── PagSeguroTransactionType.class.php │ ├── exception │ │ └── PagSeguroServiceException.class.php │ ├── helper │ │ └── PagSeguroHelper.class.php │ ├── loader │ │ └── PagSeguroAutoLoader.class.php │ ├── log │ │ └── LogPagSeguro.class.php │ ├── parser │ │ ├── PagSeguroPaymentParser.class.php │ │ ├── PagSeguroPaymentParserData.class.php │ │ ├── PagSeguroServiceParser.class.php │ │ └── PagSeguroTransactionParser.class.php │ ├── resources │ │ ├── PagSeguroResources.class.php │ │ └── PagSeguroResources.php │ ├── service │ │ ├── PagSeguroConnectionData.class.php │ │ ├── PagSeguroNotificationService.class.php │ │ ├── PagSeguroPaymentService.class.php │ │ └── PagSeguroTransactionSearchService.class.php │ └── utils │ │ ├── PagSeguroHttpConnection.class.php │ │ └── PagSeguroXmlParser.class.php ├── pagseguro_jgive.php ├── pagseguro_jgive.xml └── pagseguro_jgive │ ├── helper.php │ └── tmpl │ └── default.php ├── pagseguro_jgive ├── en-GB │ └── en-GB.plg_payment_pagseguro_jgive.ini ├── lib │ ├── PagSeguroLibrary.php │ ├── config │ │ ├── PagSeguroConfig.class.php │ │ └── PagSeguroConfig.php │ ├── domain │ │ ├── PagSeguroAccountCredentials.class.php │ │ ├── PagSeguroAddress.class.php │ │ ├── PagSeguroCredentials.class.php │ │ ├── PagSeguroError.class.php │ │ ├── PagSeguroHttpStatus.class.php │ │ ├── PagSeguroItem.class.php │ │ ├── PagSeguroNotificationType.class.php │ │ ├── PagSeguroPaymentMethod.class.php │ │ ├── PagSeguroPaymentMethodCode.class.php │ │ ├── PagSeguroPaymentMethodType.class.php │ │ ├── PagSeguroPaymentRequest.class.php │ │ ├── PagSeguroPhone.class.php │ │ ├── PagSeguroSender.class.php │ │ ├── PagSeguroShipping.class.php │ │ ├── PagSeguroShippingType.class.php │ │ ├── PagSeguroTransaction.class.php │ │ ├── PagSeguroTransactionSearchResult.class.php │ │ ├── PagSeguroTransactionStatus.class.php │ │ ├── PagSeguroTransactionSummary.class.php │ │ └── PagSeguroTransactionType.class.php │ ├── exception │ │ └── PagSeguroServiceException.class.php │ ├── helper │ │ └── PagSeguroHelper.class.php │ ├── loader │ │ └── PagSeguroAutoLoader.class.php │ ├── log │ │ └── LogPagSeguro.class.php │ ├── parser │ │ ├── PagSeguroPaymentParser.class.php │ │ ├── PagSeguroPaymentParserData.class.php │ │ ├── PagSeguroServiceParser.class.php │ │ └── PagSeguroTransactionParser.class.php │ ├── resources │ │ ├── PagSeguroResources.class.php │ │ └── PagSeguroResources.php │ ├── service │ │ ├── PagSeguroConnectionData.class.php │ │ ├── PagSeguroNotificationService.class.php │ │ ├── PagSeguroPaymentService.class.php │ │ └── PagSeguroTransactionSearchService.class.php │ └── utils │ │ ├── PagSeguroHttpConnection.class.php │ │ └── PagSeguroXmlParser.class.php ├── pagseguro_jgive.php ├── pagseguro_jgive.xml └── pagseguro_jgive │ ├── helper.php │ └── tmpl │ └── default.php ├── pagseguro_jticketing Not 3.0 ├── en-GB │ └── en-GB.plg_payment_pagseguro_jticketing.ini ├── lib │ ├── PagSeguroLibrary.php │ ├── config │ │ ├── PagSeguroConfig.class.php │ │ └── PagSeguroConfig.php │ ├── domain │ │ ├── PagSeguroAccountCredentials.class.php │ │ ├── PagSeguroAddress.class.php │ │ ├── PagSeguroCredentials.class.php │ │ ├── PagSeguroError.class.php │ │ ├── PagSeguroHttpStatus.class.php │ │ ├── PagSeguroItem.class.php │ │ ├── PagSeguroNotificationType.class.php │ │ ├── PagSeguroPaymentMethod.class.php │ │ ├── PagSeguroPaymentMethodCode.class.php │ │ ├── PagSeguroPaymentMethodType.class.php │ │ ├── PagSeguroPaymentRequest.class.php │ │ ├── PagSeguroPhone.class.php │ │ ├── PagSeguroSender.class.php │ │ ├── PagSeguroShipping.class.php │ │ ├── PagSeguroShippingType.class.php │ │ ├── PagSeguroTransaction.class.php │ │ ├── PagSeguroTransactionSearchResult.class.php │ │ ├── PagSeguroTransactionStatus.class.php │ │ ├── PagSeguroTransactionSummary.class.php │ │ └── PagSeguroTransactionType.class.php │ ├── exception │ │ └── PagSeguroServiceException.class.php │ ├── helper │ │ └── PagSeguroHelper.class.php │ ├── loader │ │ └── PagSeguroAutoLoader.class.php │ ├── log │ │ └── LogPagSeguro.class.php │ ├── parser │ │ ├── PagSeguroPaymentParser.class.php │ │ ├── PagSeguroPaymentParserData.class.php │ │ ├── PagSeguroServiceParser.class.php │ │ └── PagSeguroTransactionParser.class.php │ ├── resources │ │ ├── PagSeguroResources.class.php │ │ └── PagSeguroResources.php │ ├── service │ │ ├── PagSeguroConnectionData.class.php │ │ ├── PagSeguroNotificationService.class.php │ │ ├── PagSeguroPaymentService.class.php │ │ └── PagSeguroTransactionSearchService.class.php │ └── utils │ │ ├── PagSeguroHttpConnection.class.php │ │ └── PagSeguroXmlParser.class.php ├── pagseguro_jticketing.php ├── pagseguro_jticketing.xml └── pagseguro_jticketing │ ├── helper.php │ └── tmpl │ └── default.php ├── pagseguro_jticketing ├── en-GB │ └── en-GB.plg_payment_pagseguro_jticketing.ini ├── lib │ ├── PagSeguroLibrary.php │ ├── config │ │ ├── PagSeguroConfig.class.php │ │ └── PagSeguroConfig.php │ ├── domain │ │ ├── PagSeguroAccountCredentials.class.php │ │ ├── PagSeguroAddress.class.php │ │ ├── PagSeguroCredentials.class.php │ │ ├── PagSeguroError.class.php │ │ ├── PagSeguroHttpStatus.class.php │ │ ├── PagSeguroItem.class.php │ │ ├── PagSeguroNotificationType.class.php │ │ ├── PagSeguroPaymentMethod.class.php │ │ ├── PagSeguroPaymentMethodCode.class.php │ │ ├── PagSeguroPaymentMethodType.class.php │ │ ├── PagSeguroPaymentRequest.class.php │ │ ├── PagSeguroPhone.class.php │ │ ├── PagSeguroSender.class.php │ │ ├── PagSeguroShipping.class.php │ │ ├── PagSeguroShippingType.class.php │ │ ├── PagSeguroTransaction.class.php │ │ ├── PagSeguroTransactionSearchResult.class.php │ │ ├── PagSeguroTransactionStatus.class.php │ │ ├── PagSeguroTransactionSummary.class.php │ │ └── PagSeguroTransactionType.class.php │ ├── exception │ │ └── PagSeguroServiceException.class.php │ ├── helper │ │ └── PagSeguroHelper.class.php │ ├── loader │ │ └── PagSeguroAutoLoader.class.php │ ├── log │ │ └── LogPagSeguro.class.php │ ├── parser │ │ ├── PagSeguroPaymentParser.class.php │ │ ├── PagSeguroPaymentParserData.class.php │ │ ├── PagSeguroServiceParser.class.php │ │ └── PagSeguroTransactionParser.class.php │ ├── resources │ │ ├── PagSeguroResources.class.php │ │ └── PagSeguroResources.php │ ├── service │ │ ├── PagSeguroConnectionData.class.php │ │ ├── PagSeguroNotificationService.class.php │ │ ├── PagSeguroPaymentService.class.php │ │ └── PagSeguroTransactionSearchService.class.php │ └── utils │ │ ├── PagSeguroHttpConnection.class.php │ │ └── PagSeguroXmlParser.class.php ├── pagseguro_jticketing.php ├── pagseguro_jticketing.xml └── pagseguro_jticketing │ ├── helper.php │ └── tmpl │ └── default.php ├── pagseguro_socialads Not 3.0 ├── en-GB │ └── en-GB.plg_payment_pagseguro_socialads.ini ├── lib │ ├── PagSeguroLibrary.php │ ├── config │ │ ├── PagSeguroConfig.class.php │ │ └── PagSeguroConfig.php │ ├── domain │ │ ├── PagSeguroAccountCredentials.class.php │ │ ├── PagSeguroAddress.class.php │ │ ├── PagSeguroCredentials.class.php │ │ ├── PagSeguroError.class.php │ │ ├── PagSeguroHttpStatus.class.php │ │ ├── PagSeguroItem.class.php │ │ ├── PagSeguroNotificationType.class.php │ │ ├── PagSeguroPaymentMethod.class.php │ │ ├── PagSeguroPaymentMethodCode.class.php │ │ ├── PagSeguroPaymentMethodType.class.php │ │ ├── PagSeguroPaymentRequest.class.php │ │ ├── PagSeguroPhone.class.php │ │ ├── PagSeguroSender.class.php │ │ ├── PagSeguroShipping.class.php │ │ ├── PagSeguroShippingType.class.php │ │ ├── PagSeguroTransaction.class.php │ │ ├── PagSeguroTransactionSearchResult.class.php │ │ ├── PagSeguroTransactionStatus.class.php │ │ ├── PagSeguroTransactionSummary.class.php │ │ └── PagSeguroTransactionType.class.php │ ├── exception │ │ └── PagSeguroServiceException.class.php │ ├── helper │ │ └── PagSeguroHelper.class.php │ ├── loader │ │ └── PagSeguroAutoLoader.class.php │ ├── log │ │ └── LogPagSeguro.class.php │ ├── parser │ │ ├── PagSeguroPaymentParser.class.php │ │ ├── PagSeguroPaymentParserData.class.php │ │ ├── PagSeguroServiceParser.class.php │ │ └── PagSeguroTransactionParser.class.php │ ├── resources │ │ ├── PagSeguroResources.class.php │ │ └── PagSeguroResources.php │ ├── service │ │ ├── PagSeguroConnectionData.class.php │ │ ├── PagSeguroNotificationService.class.php │ │ ├── PagSeguroPaymentService.class.php │ │ └── PagSeguroTransactionSearchService.class.php │ └── utils │ │ ├── PagSeguroHttpConnection.class.php │ │ └── PagSeguroXmlParser.class.php ├── pagseguro_socialads.php ├── pagseguro_socialads.xml └── pagseguro_socialads │ ├── helper.php │ └── tmpl │ └── default.php ├── pagseguro_socialads ├── en-GB │ └── en-GB.plg_payment_pagseguro_socialads.ini ├── lib │ ├── PagSeguroLibrary.php │ ├── config │ │ ├── PagSeguroConfig.class.php │ │ └── PagSeguroConfig.php │ ├── domain │ │ ├── PagSeguroAccountCredentials.class.php │ │ ├── PagSeguroAddress.class.php │ │ ├── PagSeguroCredentials.class.php │ │ ├── PagSeguroError.class.php │ │ ├── PagSeguroHttpStatus.class.php │ │ ├── PagSeguroItem.class.php │ │ ├── PagSeguroNotificationType.class.php │ │ ├── PagSeguroPaymentMethod.class.php │ │ ├── PagSeguroPaymentMethodCode.class.php │ │ ├── PagSeguroPaymentMethodType.class.php │ │ ├── PagSeguroPaymentRequest.class.php │ │ ├── PagSeguroPhone.class.php │ │ ├── PagSeguroSender.class.php │ │ ├── PagSeguroShipping.class.php │ │ ├── PagSeguroShippingType.class.php │ │ ├── PagSeguroTransaction.class.php │ │ ├── PagSeguroTransactionSearchResult.class.php │ │ ├── PagSeguroTransactionStatus.class.php │ │ ├── PagSeguroTransactionSummary.class.php │ │ └── PagSeguroTransactionType.class.php │ ├── exception │ │ └── PagSeguroServiceException.class.php │ ├── helper │ │ └── PagSeguroHelper.class.php │ ├── loader │ │ └── PagSeguroAutoLoader.class.php │ ├── log │ │ └── LogPagSeguro.class.php │ ├── parser │ │ ├── PagSeguroPaymentParser.class.php │ │ ├── PagSeguroPaymentParserData.class.php │ │ ├── PagSeguroServiceParser.class.php │ │ └── PagSeguroTransactionParser.class.php │ ├── resources │ │ ├── PagSeguroResources.class.php │ │ └── PagSeguroResources.php │ ├── service │ │ ├── PagSeguroConnectionData.class.php │ │ ├── PagSeguroNotificationService.class.php │ │ ├── PagSeguroPaymentService.class.php │ │ └── PagSeguroTransactionSearchService.class.php │ └── utils │ │ ├── PagSeguroHttpConnection.class.php │ │ └── PagSeguroXmlParser.class.php ├── pagseguro_socialads.php ├── pagseguro_socialads.xml └── pagseguro_socialads │ ├── helper.php │ └── tmpl │ └── default.php ├── payfast ├── en-GB │ ├── en-GB.plg_payment_payfast.ini │ └── en-GB.plg_payment_payfast.sys.ini ├── payfast.php ├── payfast.xml └── payfast │ ├── helper.php │ └── tmpl │ └── default.php ├── paymill ├── en-GB.plg_payment_paymill.ini ├── paymill.php ├── paymill.xml └── paymill │ ├── helper.php │ ├── index.html │ ├── lib │ └── Services │ │ └── Paymill │ │ ├── Apiclient │ │ ├── Curl.php │ │ ├── Interface.php │ │ └── paymill.crt │ │ ├── Base.php │ │ ├── Clients.php │ │ ├── Coupons.php │ │ ├── Exception.php │ │ ├── Offers.php │ │ ├── Payments.php │ │ ├── Preauthorizations.php │ │ ├── Refunds.php │ │ ├── Subscriptions.php │ │ ├── Transactions.php │ │ └── Webhooks.php │ └── tmpl │ ├── ajax_loader.gif │ ├── default.php │ └── paymill.css ├── paypal ├── da-DK │ └── da-DK.plg_payment_paypal.ini ├── de-DE │ └── de-DE.plg_payment_paypal.ini ├── en-GB │ └── en-GB.plg_payment_paypal.ini ├── es-ES │ └── es-ES.plg_payment_paypal.ini ├── fr-FR │ └── fr-FR.plg_payment_paypal.ini ├── index.html ├── it-IT │ └── it-IT.plg_payment_paypal.ini ├── nl-NL │ └── nl-NL.plg_payment_paypal.ini ├── paypal.php ├── paypal.xml ├── paypal │ ├── cacert.pem │ ├── form │ │ └── paypal.xml │ ├── helper.php │ ├── index.html │ └── tmpl │ │ ├── default.php │ │ ├── index.html │ │ └── recurring.php ├── pt-PT │ └── pt-PT.plg_payment_paypal.ini ├── sv-SE │ └── sv-SE.plg_payment_paypal.ini └── th-TH │ └── th-TH.plg_payment_paypal.ini ├── paypal_adaptive_payment ├── adaptive_paypal.php ├── adaptive_paypal.xml ├── adaptive_paypal │ ├── form │ │ └── adaptive_paypal.xml │ ├── helper.php │ ├── index.html │ ├── index.php │ └── tmpl │ │ ├── default.php │ │ └── index.html ├── elements │ ├── index.html │ └── logfile.php ├── en-GB │ └── en-GB.plg_payment_adaptive_paypal.ini └── index.html ├── paypalpro ├── da-DK │ └── da-DK.plg_payment_paypalpro.ini ├── de-DE │ └── de-DE.plg_payment_paypalpro.ini ├── en-GB │ ├── en-GB.plg_payment_paypalpro.ini │ └── en-GB.plg_payment_paypalpro.sys.ini ├── es-ES │ └── es-ES.plg_payment_paypalpro.ini ├── fr-FR │ └── fr-FR.plg_payment_paypalpro.ini ├── it-IT │ └── it-IT.plg_payment_paypalpro.ini ├── nl-NL │ └── nl-NL.plg_payment_paypalpro.ini ├── paypalpro.php ├── paypalpro.xml ├── paypalpro │ ├── form │ │ └── paypalpro.xml │ ├── helper.php │ └── tmpl │ │ ├── form.php │ │ └── index.html ├── pt-PT │ └── pt-PT.plg_payment_paypalpro.ini ├── sv-SE │ └── sv-SE.plg_payment_paypalpro.ini └── th-TH │ └── th-TH.plg_payment_paypalpro.ini ├── payu ├── en-GB │ └── en-GB.plg_payment_payu.ini ├── payu.php ├── payu.xml └── payu │ ├── helper.php │ └── tmpl │ ├── default.php │ └── index.html ├── payumoney ├── en-GB │ └── en-GB.plg_payment_payumoney.ini ├── payumoney.php ├── payumoney.xml └── payumoney │ ├── helper.php │ └── tmpl │ └── default.php └── transfirst ├── en-GB ├── en-GB.plg_payment_transfirst.ini └── en-GB.plg_payment_transfirst.sys.ini ├── index.html ├── transfirst.php ├── transfirst.xml └── transfirst ├── Transfirst.class.php ├── helper.php ├── index.html └── tmpl ├── default.php ├── default_bs3.php └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/README.md -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/access.xml -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/assets/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/assets/css/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/assets/css/tjcpg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/assets/css/tjcpg.css -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/assets/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/assets/images/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/assets/images/l_com_tjcpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/assets/images/l_com_tjcpg.png -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/assets/images/l_tjcpgpayment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/assets/images/l_tjcpgpayment.png -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/assets/images/s_com_tjcpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/assets/images/s_com_tjcpg.png -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/assets/images/s_tjcpgpayment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/assets/images/s_tjcpgpayment.png -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/assets/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/config.xml -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/controller.php -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/controllers/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/controllers/tjcpgpayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/controllers/tjcpgpayment.php -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/elements/gatewayplg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/elements/gatewayplg.php -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/elements/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/elements/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/helpers/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/helpers/tjcpg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/helpers/tjcpg.php -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/language/en-GB.com_easy_tjcpg.ini~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/language/en-GB.com_easy_tjcpg.ini~ -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/language/en-GB.com_tjcpg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/language/en-GB.com_tjcpg.ini -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/language/en-GB.com_tjcpg.ini~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/language/en-GB.com_tjcpg.ini~ -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/language/en-GB.com_tjcpg.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/language/en-GB.com_tjcpg.sys.ini -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/language/en-GB.com_tjcpg.sys.ini~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/language/en-GB.com_tjcpg.sys.ini~ -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/models/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/models/tjcpgpayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/models/tjcpgpayment.php -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/sql/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/sql/install_tjcpg_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/sql/install_tjcpg_orders.sql -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/sql/install_tjcpg_orders.sql~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/sql/install_tjcpg_orders.sql~ -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/tjcpg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/tjcpg.php -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/views/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/views/tjcpgpayment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/views/tjcpgpayment/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/views/tjcpgpayment/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/views/tjcpgpayment/tmpl/default.php -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/views/tjcpgpayment/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/views/tjcpgpayment/tmpl/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/administrator/views/tjcpgpayment/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/administrator/views/tjcpgpayment/view.html.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/controller.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/controllers/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/site/controllers/payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/controllers/payment.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/helpers/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/site/helpers/tjcpg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/helpers/tjcpg.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/site/language/en-GB.com_tjcpg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/language/en-GB.com_tjcpg.ini -------------------------------------------------------------------------------- /code/com_tjcpg/site/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/models/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/site/models/orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/models/orders.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/models/payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/models/payment.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/router.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/tjcpg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/tjcpg.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/views/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/site/views/orders/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/views/orders/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/site/views/orders/tmpl/cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/views/orders/tmpl/cancel.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/views/orders/tmpl/order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/views/orders/tmpl/order.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/views/orders/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/views/orders/view.html.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/views/payment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/views/payment/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/site/views/payment/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/views/payment/tmpl/default.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/views/payment/tmpl/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/views/payment/tmpl/default.xml -------------------------------------------------------------------------------- /code/com_tjcpg/site/views/payment/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/views/payment/tmpl/index.html -------------------------------------------------------------------------------- /code/com_tjcpg/site/views/payment/tmpl/pay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/views/payment/tmpl/pay.php -------------------------------------------------------------------------------- /code/com_tjcpg/site/views/payment/view.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/site/views/payment/view.html.php -------------------------------------------------------------------------------- /code/com_tjcpg/tjcpg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/com_tjcpg/tjcpg.xml -------------------------------------------------------------------------------- /code/plugins/2checkout/2checkout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/2checkout.php -------------------------------------------------------------------------------- /code/plugins/2checkout/2checkout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/2checkout.xml -------------------------------------------------------------------------------- /code/plugins/2checkout/2checkout/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/2checkout/helper.php -------------------------------------------------------------------------------- /code/plugins/2checkout/2checkout/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/2checkout/2checkout/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/2checkout/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/2checkout/2checkout/tmpl/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/2checkout/tmpl/form.php -------------------------------------------------------------------------------- /code/plugins/2checkout/da-DK/da-DK.plg_payment_2checkout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/da-DK/da-DK.plg_payment_2checkout.ini -------------------------------------------------------------------------------- /code/plugins/2checkout/de-DE/de-DE.plg_payment_2checkout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/de-DE/de-DE.plg_payment_2checkout.ini -------------------------------------------------------------------------------- /code/plugins/2checkout/en-GB/en-GB.plg_payment_2checkout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/en-GB/en-GB.plg_payment_2checkout.ini -------------------------------------------------------------------------------- /code/plugins/2checkout/es-ES/es-ES.plg_payment_2checkout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/es-ES/es-ES.plg_payment_2checkout.ini -------------------------------------------------------------------------------- /code/plugins/2checkout/fr-FR/fr-FR.plg_payment_2checkout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/fr-FR/fr-FR.plg_payment_2checkout.ini -------------------------------------------------------------------------------- /code/plugins/2checkout/it-IT/it-IT.plg_payment_2checkout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/it-IT/it-IT.plg_payment_2checkout.ini -------------------------------------------------------------------------------- /code/plugins/2checkout/nl-NL/nl-NL.plg_payment_2checkout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/nl-NL/nl-NL.plg_payment_2checkout.ini -------------------------------------------------------------------------------- /code/plugins/2checkout/pt-PT/pt-PT.plg_payment_2checkout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/pt-PT/pt-PT.plg_payment_2checkout.ini -------------------------------------------------------------------------------- /code/plugins/2checkout/sv-SE/sv-SE.plg_payment_2checkout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/sv-SE/sv-SE.plg_payment_2checkout.ini -------------------------------------------------------------------------------- /code/plugins/2checkout/th-TH/th-TH.plg_payment_2checkout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/2checkout/th-TH/th-TH.plg_payment_2checkout.ini -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/alphauserpoints.php -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/alphauserpoints.xml -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints/com_jgive_aup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/alphauserpoints/com_jgive_aup.zip -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints/element/aupfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/alphauserpoints/element/aupfile.php -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints/element/aupfilesjticketing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/alphauserpoints/element/aupfilesjticketing.php -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints/element/aupfilesocialads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/alphauserpoints/element/aupfilesocialads.php -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/alphauserpoints/helper.php -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints/jticketing_aup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/alphauserpoints/jticketing_aup.zip -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints/socialads_aup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/alphauserpoints/socialads_aup.zip -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints/tmpl/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/alphauserpoints/tmpl/form.php -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/alphauserpoints/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/da-DK/da-DK.plg_payment_alphauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/da-DK/da-DK.plg_payment_alphauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/de-DE/de-DE.plg_payment_alphapoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/de-DE/de-DE.plg_payment_alphapoints.ini -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/de-DE/de-DE.plg_payment_alphauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/de-DE/de-DE.plg_payment_alphauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/en-GB/en-GB.plg_payment_alphauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/en-GB/en-GB.plg_payment_alphauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/es-ES/es-ES.plg_payment_alphauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/es-ES/es-ES.plg_payment_alphauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/it-IT/it-IT.plg_payment_alphauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/it-IT/it-IT.plg_payment_alphauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/nl-NL/nl-NL.plg_payment_alphauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/nl-NL/nl-NL.plg_payment_alphauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/pt-PT/pt-PT.plg_payment_alphauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/pt-PT/pt-PT.plg_payment_alphauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/sv-SE/sv-SE.plg_payment_alphauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/sv-SE/sv-SE.plg_payment_alphauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/alphauserpoints/th-TH/th-TH.plg_payment_alphauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/alphauserpoints/th-TH/th-TH.plg_payment_alphauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/altauserpoints.php -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/altauserpoints.xml -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints/com_jgive_aup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/altauserpoints/com_jgive_aup.zip -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints/element/aupfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/altauserpoints/element/aupfile.php -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints/element/aupfilesjticketing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/altauserpoints/element/aupfilesjticketing.php -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints/element/aupfilesocialads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/altauserpoints/element/aupfilesocialads.php -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/altauserpoints/helper.php -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints/jticketing_aup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/altauserpoints/jticketing_aup.zip -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints/socialads_aup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/altauserpoints/socialads_aup.zip -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints/tmpl/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/altauserpoints/tmpl/form.php -------------------------------------------------------------------------------- /code/plugins/altauserpoints/altauserpoints/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/altauserpoints/da-DK/da-DK.plg_payment_altauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/da-DK/da-DK.plg_payment_altauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/altauserpoints/de-DE/de-DE.plg_payment_altapoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/de-DE/de-DE.plg_payment_altapoints.ini -------------------------------------------------------------------------------- /code/plugins/altauserpoints/de-DE/de-DE.plg_payment_altauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/de-DE/de-DE.plg_payment_altauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/altauserpoints/en-GB/en-GB.plg_payment_altauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/en-GB/en-GB.plg_payment_altauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/altauserpoints/es-ES/es-ES.plg_payment_altauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/es-ES/es-ES.plg_payment_altauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/altauserpoints/it-IT/it-IT.plg_payment_altauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/it-IT/it-IT.plg_payment_altauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/altauserpoints/nl-NL/nl-NL.plg_payment_altauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/nl-NL/nl-NL.plg_payment_altauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/altauserpoints/pt-PT/pt-PT.plg_payment_altauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/pt-PT/pt-PT.plg_payment_altauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/altauserpoints/sv-SE/sv-SE.plg_payment_altauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/sv-SE/sv-SE.plg_payment_altauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/altauserpoints/th-TH/th-TH.plg_payment_altauserpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/altauserpoints/th-TH/th-TH.plg_payment_altauserpoints.ini -------------------------------------------------------------------------------- /code/plugins/amazon/amazon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/amazon.php -------------------------------------------------------------------------------- /code/plugins/amazon/amazon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/amazon.xml -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/amazon/helper.php -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/lib/ButtonGenerationWithSignature/ButtonGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/amazon/lib/ButtonGenerationWithSignature/ButtonGenerator.php -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/lib/ButtonGenerationWithSignature/SignatureUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/amazon/lib/ButtonGenerationWithSignature/SignatureUtils.php -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/lib/ButtonGenerationWithSignature/StandardButtonSample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/amazon/lib/ButtonGenerationWithSignature/StandardButtonSample.php -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/lib/ButtonGenerationWithSignature/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/lib/IPNAndReturnURLValidation/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/lib/IPNAndReturnURLValidation/src/.config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/amazon/lib/IPNAndReturnURLValidation/src/.config.inc.php -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/lib/IPNAndReturnURLValidation/src/ca-bundle.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/amazon/lib/IPNAndReturnURLValidation/src/ca-bundle.crt -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/lib/IPNAndReturnURLValidation/src/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/lib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/amazon/lib/LICENSE.txt -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/lib/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/amazon/lib/NOTICE.txt -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/lib/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/amazon/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/amazon/amazon/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/amazon/en-GB/en-GB.plg_payment_amazon.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/amazon/en-GB/en-GB.plg_payment_amazon.ini -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet.xml -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/helper.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/AuthorizeNet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/AuthorizeNet.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/AuthorizeNetAIM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/AuthorizeNetAIM.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/AuthorizeNetARB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/AuthorizeNetARB.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/AuthorizeNetCIM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/AuthorizeNetCIM.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/AuthorizeNetCP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/AuthorizeNetCP.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/AuthorizeNetDPM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/AuthorizeNetDPM.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/AuthorizeNetSIM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/AuthorizeNetSIM.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/AuthorizeNetSOAP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/AuthorizeNetSOAP.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/AuthorizeNetTD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/AuthorizeNetTD.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/shared/AuthorizeNetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/shared/AuthorizeNetRequest.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/shared/AuthorizeNetResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/shared/AuthorizeNetResponse.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/shared/AuthorizeNetTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/shared/AuthorizeNetTypes.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/shared/AuthorizeNetXMLResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/shared/AuthorizeNetXMLResponse.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/lib/ssl/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/lib/ssl/cert.pem -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/tmpl/default_bs3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/tmpl/default_bs3.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/tmpl/recurring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/tmpl/recurring.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/authorizenet/tmpl/recurring_bs3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/authorizenet/tmpl/recurring_bs3.php -------------------------------------------------------------------------------- /code/plugins/authorizenet/da-DK/da-DK.plg_payment_authorizenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/da-DK/da-DK.plg_payment_authorizenet.ini -------------------------------------------------------------------------------- /code/plugins/authorizenet/de-DE/de-DE.plg_payment_authorizenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/de-DE/de-DE.plg_payment_authorizenet.ini -------------------------------------------------------------------------------- /code/plugins/authorizenet/en-GB/en-GB.plg_payment_authorizenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/en-GB/en-GB.plg_payment_authorizenet.ini -------------------------------------------------------------------------------- /code/plugins/authorizenet/es-ES/es-ES.plg_payment_authorizenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/es-ES/es-ES.plg_payment_authorizenet.ini -------------------------------------------------------------------------------- /code/plugins/authorizenet/fr-FR/fr-FR.plg_payment_authorizenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/fr-FR/fr-FR.plg_payment_authorizenet.ini -------------------------------------------------------------------------------- /code/plugins/authorizenet/it-IT/it-IT.plg_payment_authorizenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/it-IT/it-IT.plg_payment_authorizenet.ini -------------------------------------------------------------------------------- /code/plugins/authorizenet/nl-NL/nl-NL.plg_payment_authorizenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/nl-NL/nl-NL.plg_payment_authorizenet.ini -------------------------------------------------------------------------------- /code/plugins/authorizenet/pt-PT/pt-PT.plg_payment_authorizenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/pt-PT/pt-PT.plg_payment_authorizenet.ini -------------------------------------------------------------------------------- /code/plugins/authorizenet/sv-SE/sv-SE.plg_payment_authorizenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/sv-SE/sv-SE.plg_payment_authorizenet.ini -------------------------------------------------------------------------------- /code/plugins/authorizenet/th-TH/th-TH.plg_payment_authorizenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/authorizenet/th-TH/th-TH.plg_payment_authorizenet.ini -------------------------------------------------------------------------------- /code/plugins/blank/blank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/blank/blank.php -------------------------------------------------------------------------------- /code/plugins/blank/blank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/blank/blank.xml -------------------------------------------------------------------------------- /code/plugins/blank/blank/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/blank/blank/helper.php -------------------------------------------------------------------------------- /code/plugins/blank/blank/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/blank/blank/index.html -------------------------------------------------------------------------------- /code/plugins/blank/blank/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/blank/blank/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/blank/blank/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/blank/blank/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/blank/en-GB/en-GB.plg_payment_blank.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/blank/en-GB/en-GB.plg_payment_blank.ini -------------------------------------------------------------------------------- /code/plugins/blank/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/blank/index.html -------------------------------------------------------------------------------- /code/plugins/bycheck/bycheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/bycheck.php -------------------------------------------------------------------------------- /code/plugins/bycheck/bycheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/bycheck.xml -------------------------------------------------------------------------------- /code/plugins/bycheck/bycheck/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/bycheck/helper.php -------------------------------------------------------------------------------- /code/plugins/bycheck/bycheck/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/bycheck/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/bycheck/bycheck/tmpl/default_bs3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/bycheck/tmpl/default_bs3.php -------------------------------------------------------------------------------- /code/plugins/bycheck/bycheck/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/bycheck/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/bycheck/da-DK/da-DK.plg_payment_bycheck.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/da-DK/da-DK.plg_payment_bycheck.ini -------------------------------------------------------------------------------- /code/plugins/bycheck/de-DE/de-DE.plg_payment_bycheck.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/de-DE/de-DE.plg_payment_bycheck.ini -------------------------------------------------------------------------------- /code/plugins/bycheck/en-GB/en-GB.plg_payment_bycheck.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/en-GB/en-GB.plg_payment_bycheck.ini -------------------------------------------------------------------------------- /code/plugins/bycheck/es-ES/es-ES.plg_payment_bycheck.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/es-ES/es-ES.plg_payment_bycheck.ini -------------------------------------------------------------------------------- /code/plugins/bycheck/it-IT/it-IT.plg_payment_bycheck.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/it-IT/it-IT.plg_payment_bycheck.ini -------------------------------------------------------------------------------- /code/plugins/bycheck/nl-NL/nl-NL.plg_payment_bycheck.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/nl-NL/nl-NL.plg_payment_bycheck.ini -------------------------------------------------------------------------------- /code/plugins/bycheck/pt-PT/pt-PT.plg_payment_bycheck.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/pt-PT/pt-PT.plg_payment_bycheck.ini -------------------------------------------------------------------------------- /code/plugins/bycheck/sv-SE/sv-SE.plg_payment_bycheck.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/sv-SE/sv-SE.plg_payment_bycheck.ini -------------------------------------------------------------------------------- /code/plugins/bycheck/th-TH/th-TH.plg_payment_bycheck.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/bycheck/th-TH/th-TH.plg_payment_bycheck.ini -------------------------------------------------------------------------------- /code/plugins/byorder/byorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/byorder.php -------------------------------------------------------------------------------- /code/plugins/byorder/byorder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/byorder.xml -------------------------------------------------------------------------------- /code/plugins/byorder/byorder/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/byorder/helper.php -------------------------------------------------------------------------------- /code/plugins/byorder/byorder/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/byorder/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/byorder/byorder/tmpl/default_bs3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/byorder/tmpl/default_bs3.php -------------------------------------------------------------------------------- /code/plugins/byorder/byorder/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/byorder/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/byorder/da-DK/da-DK.plg_payment_byorder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/da-DK/da-DK.plg_payment_byorder.ini -------------------------------------------------------------------------------- /code/plugins/byorder/de-DE/de-DE.plg_payment_byorder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/de-DE/de-DE.plg_payment_byorder.ini -------------------------------------------------------------------------------- /code/plugins/byorder/en-GB/en-GB.plg_payment_byorder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/en-GB/en-GB.plg_payment_byorder.ini -------------------------------------------------------------------------------- /code/plugins/byorder/es-ES/es-ES.plg_payment_byorder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/es-ES/es-ES.plg_payment_byorder.ini -------------------------------------------------------------------------------- /code/plugins/byorder/it-IT/it-IT.plg_payment_byorder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/it-IT/it-IT.plg_payment_byorder.ini -------------------------------------------------------------------------------- /code/plugins/byorder/nl-NL/nl-NL.plg_payment_byorder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/nl-NL/nl-NL.plg_payment_byorder.ini -------------------------------------------------------------------------------- /code/plugins/byorder/pt-PT/pt-PT.plg_payment_byorder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/pt-PT/pt-PT.plg_payment_byorder.ini -------------------------------------------------------------------------------- /code/plugins/byorder/sv-SE/sv-SE.plg_payment_byorder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/sv-SE/sv-SE.plg_payment_byorder.ini -------------------------------------------------------------------------------- /code/plugins/byorder/th-TH/th-TH.plg_payment_byorder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/byorder/th-TH/th-TH.plg_payment_byorder.ini -------------------------------------------------------------------------------- /code/plugins/ccavenue/ccavenue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ccavenue/ccavenue.php -------------------------------------------------------------------------------- /code/plugins/ccavenue/ccavenue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ccavenue/ccavenue.xml -------------------------------------------------------------------------------- /code/plugins/ccavenue/ccavenue/Crypto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ccavenue/ccavenue/Crypto.php -------------------------------------------------------------------------------- /code/plugins/ccavenue/ccavenue/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ccavenue/ccavenue/helper.php -------------------------------------------------------------------------------- /code/plugins/ccavenue/ccavenue/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ccavenue/ccavenue/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/ccavenue/en-GB/en-GB.plg_payment_ccavenue.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ccavenue/en-GB/en-GB.plg_payment_ccavenue.ini -------------------------------------------------------------------------------- /code/plugins/cod/cod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/cod/cod.php -------------------------------------------------------------------------------- /code/plugins/cod/cod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/cod/cod.xml -------------------------------------------------------------------------------- /code/plugins/cod/cod/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/cod/cod/helper.php -------------------------------------------------------------------------------- /code/plugins/cod/cod/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/cod/cod/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/cod/cod/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/cod/cod/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/cod/en-GB/en-GB.plg_payment_cod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/cod/en-GB/en-GB.plg_payment_cod.ini -------------------------------------------------------------------------------- /code/plugins/easysocialpoints/easysocialpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/easysocialpoints/easysocialpoints.php -------------------------------------------------------------------------------- /code/plugins/easysocialpoints/easysocialpoints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/easysocialpoints/easysocialpoints.xml -------------------------------------------------------------------------------- /code/plugins/easysocialpoints/easysocialpoints/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/easysocialpoints/easysocialpoints/helper.php -------------------------------------------------------------------------------- /code/plugins/easysocialpoints/easysocialpoints/tmpl/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/easysocialpoints/easysocialpoints/tmpl/form.php -------------------------------------------------------------------------------- /code/plugins/easysocialpoints/en-GB/en-GB.plg_payment_easysocialpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/easysocialpoints/en-GB/en-GB.plg_payment_easysocialpoints.ini -------------------------------------------------------------------------------- /code/plugins/epaydk/en-GB/en-GB.plg_payment_epaydk.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/epaydk/en-GB/en-GB.plg_payment_epaydk.ini -------------------------------------------------------------------------------- /code/plugins/epaydk/en-GB/en-GB.plg_payment_epaydk.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/epaydk/en-GB/en-GB.plg_payment_epaydk.sys.ini -------------------------------------------------------------------------------- /code/plugins/epaydk/epaydk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/epaydk/epaydk.php -------------------------------------------------------------------------------- /code/plugins/epaydk/epaydk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/epaydk/epaydk.xml -------------------------------------------------------------------------------- /code/plugins/epaydk/epaydk/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/epaydk/epaydk/helper.php -------------------------------------------------------------------------------- /code/plugins/epaydk/epaydk/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/epaydk/epaydk/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/ewallet/en-GB/en-GB.plg_payment_ewallet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewallet/en-GB/en-GB.plg_payment_ewallet.ini -------------------------------------------------------------------------------- /code/plugins/ewallet/ewallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewallet/ewallet.php -------------------------------------------------------------------------------- /code/plugins/ewallet/ewallet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewallet/ewallet.xml -------------------------------------------------------------------------------- /code/plugins/ewallet/ewallet/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewallet/ewallet/helper.php -------------------------------------------------------------------------------- /code/plugins/ewallet/ewallet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewallet/ewallet/index.html -------------------------------------------------------------------------------- /code/plugins/ewallet/ewallet/tmpl/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewallet/ewallet/tmpl/form.php -------------------------------------------------------------------------------- /code/plugins/ewallet/ewallet/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewallet/ewallet/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/eway/en-GB/en-GB.plg_payment_eway.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/eway/en-GB/en-GB.plg_payment_eway.ini -------------------------------------------------------------------------------- /code/plugins/eway/en-GB/en-GB.plg_payment_eway.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/eway/en-GB/en-GB.plg_payment_eway.sys.ini -------------------------------------------------------------------------------- /code/plugins/eway/eway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/eway/eway.php -------------------------------------------------------------------------------- /code/plugins/eway/eway.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/eway/eway.xml -------------------------------------------------------------------------------- /code/plugins/eway/eway/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/eway/eway/helper.php -------------------------------------------------------------------------------- /code/plugins/eway/eway/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/eway/eway/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/ewayrapid3/en-GB/en-GB.plg_payment_ewayrapid3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewayrapid3/en-GB/en-GB.plg_payment_ewayrapid3.ini -------------------------------------------------------------------------------- /code/plugins/ewayrapid3/en-GB/en-GB.plg_payment_ewayrapid3.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewayrapid3/en-GB/en-GB.plg_payment_ewayrapid3.sys.ini -------------------------------------------------------------------------------- /code/plugins/ewayrapid3/ewayrapid3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewayrapid3/ewayrapid3.php -------------------------------------------------------------------------------- /code/plugins/ewayrapid3/ewayrapid3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewayrapid3/ewayrapid3.xml -------------------------------------------------------------------------------- /code/plugins/ewayrapid3/ewayrapid3/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewayrapid3/ewayrapid3/form.php -------------------------------------------------------------------------------- /code/plugins/ewayrapid3/ewayrapid3/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewayrapid3/ewayrapid3/helper.php -------------------------------------------------------------------------------- /code/plugins/ewayrapid3/ewayrapid3/library/Rapid3.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewayrapid3/ewayrapid3/library/Rapid3.0.php -------------------------------------------------------------------------------- /code/plugins/ewayrapid3/ewayrapid3/library/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewayrapid3/ewayrapid3/library/ReadMe.txt -------------------------------------------------------------------------------- /code/plugins/ewayrapid3/ewayrapid3/library/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewayrapid3/ewayrapid3/library/config.ini -------------------------------------------------------------------------------- /code/plugins/ewayrapid3/ewayrapid3/library/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/ewayrapid3/ewayrapid3/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ewayrapid3/ewayrapid3/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/GiroCheckout_SDK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/GiroCheckout_SDK.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/GiroCheckout_SDK_Notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/GiroCheckout_SDK_Notify.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/GiroCheckout_SDK_Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/GiroCheckout_SDK_Request.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/api/GiroCheckout_SDK_AbstractApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/api/GiroCheckout_SDK_AbstractApi.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/api/GiroCheckout_SDK_InterfaceApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/api/GiroCheckout_SDK_InterfaceApi.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/api/eps/GiroCheckout_SDK_EpsBankstatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/api/eps/GiroCheckout_SDK_EpsBankstatus.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/api/eps/GiroCheckout_SDK_EpsIssuerList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/api/eps/GiroCheckout_SDK_EpsIssuerList.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/api/eps/GiroCheckout_SDK_EpsTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/api/eps/GiroCheckout_SDK_EpsTransaction.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/api/giropay/GiroCheckout_SDK_GiropayIDCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/api/giropay/GiroCheckout_SDK_GiropayIDCheck.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/api/ideal/GiroCheckout_SDK_IdealIssuerList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/api/ideal/GiroCheckout_SDK_IdealIssuerList.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/api/ideal/GiroCheckout_SDK_IdealPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/api/ideal/GiroCheckout_SDK_IdealPayment.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/cacert.pem -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/helper/GiroCheckout_SDK_Curl_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/helper/GiroCheckout_SDK_Curl_helper.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/helper/GiroCheckout_SDK_Debug_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/helper/GiroCheckout_SDK_Debug_helper.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/helper/GiroCheckout_SDK_Exception_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/helper/GiroCheckout_SDK_Exception_helper.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/helper/GiroCheckout_SDK_Hash_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/helper/GiroCheckout_SDK_Hash_helper.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/helper/GiroCheckout_SDK_ResponseCode_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/helper/GiroCheckout_SDK_ResponseCode_helper.php -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/log/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/log/.htaccess -------------------------------------------------------------------------------- /code/plugins/giropay/GiroCheckout_SDK/logo/Logo_giropay_60_px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/GiroCheckout_SDK/logo/Logo_giropay_60_px.jpg -------------------------------------------------------------------------------- /code/plugins/giropay/de-DE/de-DE.plg_payment_giropay.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/de-DE/de-DE.plg_payment_giropay.ini -------------------------------------------------------------------------------- /code/plugins/giropay/en-GB/en-GB.plg_payment_giropay.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/en-GB/en-GB.plg_payment_giropay.ini -------------------------------------------------------------------------------- /code/plugins/giropay/giropay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/giropay.php -------------------------------------------------------------------------------- /code/plugins/giropay/giropay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/giropay.xml -------------------------------------------------------------------------------- /code/plugins/giropay/giropay/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/giropay/helper.php -------------------------------------------------------------------------------- /code/plugins/giropay/giropay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/giropay/index.html -------------------------------------------------------------------------------- /code/plugins/giropay/giropay/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/giropay/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/giropay/giropay/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/giropay/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/giropay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/giropay/index.html -------------------------------------------------------------------------------- /code/plugins/gtpay/gtpay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/gtpay/gtpay.php -------------------------------------------------------------------------------- /code/plugins/gtpay/gtpay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/gtpay/gtpay.xml -------------------------------------------------------------------------------- /code/plugins/gtpay/gtpay/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/gtpay/gtpay/helper.php -------------------------------------------------------------------------------- /code/plugins/gtpay/gtpay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/gtpay/gtpay/index.html -------------------------------------------------------------------------------- /code/plugins/gtpay/gtpay/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/gtpay/gtpay/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/gtpay/gtpay/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/gtpay/gtpay/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/gtpay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/gtpay/index.html -------------------------------------------------------------------------------- /code/plugins/gtpay/languages/en-GB/en-GB.plg_payment_gtpay.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/gtpay/languages/en-GB/en-GB.plg_payment_gtpay.ini -------------------------------------------------------------------------------- /code/plugins/gtpay/languages/en-GB/en-GB.plg_payment_gtpay.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/gtpay/languages/en-GB/en-GB.plg_payment_gtpay.sys.ini -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/da-DK/da-DK.plg_payment_jomsocialpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/da-DK/da-DK.plg_payment_jomsocialpoints.ini -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/de-DE/de-DE.plg_payment_jomsocialpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/de-DE/de-DE.plg_payment_jomsocialpoints.ini -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/en-GB/en-GB.plg_payment_jomsocialpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/en-GB/en-GB.plg_payment_jomsocialpoints.ini -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/es-ES/es-ES.plg_payment_jomsocialpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/es-ES/es-ES.plg_payment_jomsocialpoints.ini -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/fr-FR/fr-FR.plg_payment_jomsocialpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/fr-FR/fr-FR.plg_payment_jomsocialpoints.ini -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/it-IT/it-IT.plg_payment_jomsocialpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/it-IT/it-IT.plg_payment_jomsocialpoints.ini -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/jomsocialpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/jomsocialpoints.php -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/jomsocialpoints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/jomsocialpoints.xml -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/jomsocialpoints/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/jomsocialpoints/helper.php -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/jomsocialpoints/tmpl/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/jomsocialpoints/tmpl/form.php -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/jomsocialpoints/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/nl-NL/nl-NL.plg_payment_jomsocialpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/nl-NL/nl-NL.plg_payment_jomsocialpoints.ini -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/pt-PT/pt-PT.plg_payment_jomsocialpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/pt-PT/pt-PT.plg_payment_jomsocialpoints.ini -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/sv-SE/sv-SE.plg_payment_jomsocialpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/sv-SE/sv-SE.plg_payment_jomsocialpoints.ini -------------------------------------------------------------------------------- /code/plugins/jomsocialpoints/th-TH/th-TH.plg_payment_jomsocialpoints.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/jomsocialpoints/th-TH/th-TH.plg_payment_jomsocialpoints.ini -------------------------------------------------------------------------------- /code/plugins/linkpoint/da-DK/da-DK.plg_payment_linkpoint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/da-DK/da-DK.plg_payment_linkpoint.ini -------------------------------------------------------------------------------- /code/plugins/linkpoint/de-DE/de-DE.plg_payment_linkpoint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/de-DE/de-DE.plg_payment_linkpoint.ini -------------------------------------------------------------------------------- /code/plugins/linkpoint/en-GB/en-GB.plg_payment_linkpoint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/en-GB/en-GB.plg_payment_linkpoint.ini -------------------------------------------------------------------------------- /code/plugins/linkpoint/es-ES/es-ES.plg_payment_linkpoint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/es-ES/es-ES.plg_payment_linkpoint.ini -------------------------------------------------------------------------------- /code/plugins/linkpoint/fr-FR/fr-FR.plg_payment_linkpoint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/fr-FR/fr-FR.plg_payment_linkpoint.ini -------------------------------------------------------------------------------- /code/plugins/linkpoint/it-IT/it-IT.plg_payment_linkpoint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/it-IT/it-IT.plg_payment_linkpoint.ini -------------------------------------------------------------------------------- /code/plugins/linkpoint/linkpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/linkpoint.php -------------------------------------------------------------------------------- /code/plugins/linkpoint/linkpoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/linkpoint.xml -------------------------------------------------------------------------------- /code/plugins/linkpoint/linkpoint/1909454871.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/linkpoint/1909454871.pem -------------------------------------------------------------------------------- /code/plugins/linkpoint/linkpoint/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/linkpoint/helper.php -------------------------------------------------------------------------------- /code/plugins/linkpoint/linkpoint/lib/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/linkpoint/linkpoint/lib/lphp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/linkpoint/lib/lphp.php -------------------------------------------------------------------------------- /code/plugins/linkpoint/linkpoint/staging_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/linkpoint/staging_cert.pem -------------------------------------------------------------------------------- /code/plugins/linkpoint/linkpoint/tmpl/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/linkpoint/tmpl/form.php -------------------------------------------------------------------------------- /code/plugins/linkpoint/linkpoint/tmpl/form_b3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/linkpoint/tmpl/form_b3.php -------------------------------------------------------------------------------- /code/plugins/linkpoint/linkpoint/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/linkpoint/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/linkpoint/nl-NL/nl-NL.plg_payment_linkpoint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/nl-NL/nl-NL.plg_payment_linkpoint.ini -------------------------------------------------------------------------------- /code/plugins/linkpoint/pt-PT/pt-PT.plg_payment_linkpoint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/pt-PT/pt-PT.plg_payment_linkpoint.ini -------------------------------------------------------------------------------- /code/plugins/linkpoint/sv-SE/sv-SE.plg_payment_linkpoint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/sv-SE/sv-SE.plg_payment_linkpoint.ini -------------------------------------------------------------------------------- /code/plugins/linkpoint/th-TH/th-TH.plg_payment_linkpoint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/linkpoint/th-TH/th-TH.plg_payment_linkpoint.ini -------------------------------------------------------------------------------- /code/plugins/offlinecard/languages/en-GB/en-GB.plg_cpgdetails.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/offlinecard/languages/en-GB/en-GB.plg_cpgdetails.ini -------------------------------------------------------------------------------- /code/plugins/offlinecard/languages/en-GB/en-GB.plg_cpgdetails.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/offlinecard/languages/en-GB/en-GB.plg_cpgdetails.sys.ini -------------------------------------------------------------------------------- /code/plugins/offlinecard/languages/en-GB/en-GB.plg_offlinecard.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/offlinecard/languages/en-GB/en-GB.plg_offlinecard.ini -------------------------------------------------------------------------------- /code/plugins/offlinecard/languages/en-GB/en-GB.plg_offlinecard.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/offlinecard/languages/en-GB/en-GB.plg_offlinecard.sys.ini -------------------------------------------------------------------------------- /code/plugins/offlinecard/offlinecard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/offlinecard/offlinecard.php -------------------------------------------------------------------------------- /code/plugins/offlinecard/offlinecard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/offlinecard/offlinecard.xml -------------------------------------------------------------------------------- /code/plugins/offlinecard/offlinecard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/offlinecard/offlinecard/index.html -------------------------------------------------------------------------------- /code/plugins/offlinecard/offlinecard/tmpl/ajax_loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/offlinecard/offlinecard/tmpl/ajax_loader.gif -------------------------------------------------------------------------------- /code/plugins/offlinecard/offlinecard/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/offlinecard/offlinecard/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/ogone/en-GB/en-GB.plg_payment_ogone.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/en-GB/en-GB.plg_payment_ogone.ini -------------------------------------------------------------------------------- /code/plugins/ogone/ogone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/ogone.php -------------------------------------------------------------------------------- /code/plugins/ogone/ogone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/ogone.xml -------------------------------------------------------------------------------- /code/plugins/ogone/ogone/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/ogone/helper.php -------------------------------------------------------------------------------- /code/plugins/ogone/ogone/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/ogone/ogone/lib/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/ogone/lib/Exception.php -------------------------------------------------------------------------------- /code/plugins/ogone/ogone/lib/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/ogone/lib/Form.php -------------------------------------------------------------------------------- /code/plugins/ogone/ogone/lib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/ogone/lib/LICENSE.txt -------------------------------------------------------------------------------- /code/plugins/ogone/ogone/lib/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/ogone/lib/Response.php -------------------------------------------------------------------------------- /code/plugins/ogone/ogone/lib/examples/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/ogone/lib/examples/form.php -------------------------------------------------------------------------------- /code/plugins/ogone/ogone/lib/examples/response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/ogone/lib/examples/response.php -------------------------------------------------------------------------------- /code/plugins/ogone/ogone/ogone_ogone.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/ogone/ogone_ogone.log -------------------------------------------------------------------------------- /code/plugins/ogone/ogone/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/ogone/ogone/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/ogone/ogone/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/pagseguro/en-GB/en-GB.plg_payment_pagseguro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/en-GB/en-GB.plg_payment_pagseguro.ini -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/PagSeguroLibrary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/PagSeguroLibrary.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/config/PagSeguroConfig.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/config/PagSeguroConfig.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/config/PagSeguroConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/config/PagSeguroConfig.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroAccountCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroAccountCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroAddress.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroAddress.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroError.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroError.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroHttpStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroHttpStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroItem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroItem.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroNotificationType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroNotificationType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroPaymentMethod.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroPaymentMethod.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroPaymentMethodCode.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroPaymentMethodCode.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroPaymentMethodType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroPaymentMethodType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroPaymentRequest.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroPaymentRequest.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroPhone.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroPhone.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroSender.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroSender.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroShipping.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroShipping.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroShippingType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroShippingType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroTransaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroTransaction.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroTransactionSearchResult.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroTransactionSearchResult.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroTransactionStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroTransactionStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroTransactionSummary.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroTransactionSummary.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/domain/PagSeguroTransactionType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/domain/PagSeguroTransactionType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/exception/PagSeguroServiceException.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/exception/PagSeguroServiceException.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/helper/PagSeguroHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/helper/PagSeguroHelper.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/loader/PagSeguroAutoLoader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/loader/PagSeguroAutoLoader.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/log/LogPagSeguro.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/log/LogPagSeguro.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/parser/PagSeguroPaymentParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/parser/PagSeguroPaymentParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/parser/PagSeguroPaymentParserData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/parser/PagSeguroPaymentParserData.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/parser/PagSeguroServiceParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/parser/PagSeguroServiceParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/parser/PagSeguroTransactionParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/parser/PagSeguroTransactionParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/resources/PagSeguroResources.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/resources/PagSeguroResources.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/resources/PagSeguroResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/resources/PagSeguroResources.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/service/PagSeguroConnectionData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/service/PagSeguroConnectionData.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/service/PagSeguroNotificationService.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/service/PagSeguroNotificationService.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/service/PagSeguroPaymentService.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/service/PagSeguroPaymentService.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/service/PagSeguroTransactionSearchService.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/service/PagSeguroTransactionSearchService.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/utils/PagSeguroHttpConnection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/utils/PagSeguroHttpConnection.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/lib/utils/PagSeguroXmlParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/lib/utils/PagSeguroXmlParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/pagseguro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/pagseguro.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/pagseguro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/pagseguro.xml -------------------------------------------------------------------------------- /code/plugins/pagseguro/pagseguro/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/pagseguro/helper.php -------------------------------------------------------------------------------- /code/plugins/pagseguro/pagseguro/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro/pagseguro/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/en-GB/en-GB.plg_payment_pagseguro_jgive.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/en-GB/en-GB.plg_payment_pagseguro_jgive.ini -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/PagSeguroLibrary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/PagSeguroLibrary.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/config/PagSeguroConfig.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/config/PagSeguroConfig.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/config/PagSeguroConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/config/PagSeguroConfig.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroAccountCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroAccountCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroAddress.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroAddress.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroError.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroError.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroHttpStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroHttpStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroItem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroItem.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroNotificationType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroNotificationType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroPaymentMethod.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroPaymentMethod.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroPaymentMethodCode.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroPaymentMethodCode.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroPaymentMethodType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroPaymentMethodType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroPaymentRequest.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroPaymentRequest.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroPhone.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroPhone.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroSender.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroSender.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroShipping.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroShipping.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroShippingType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroShippingType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroTransaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroTransaction.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroTransactionStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroTransactionStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroTransactionSummary.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroTransactionSummary.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroTransactionType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/domain/PagSeguroTransactionType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/helper/PagSeguroHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/helper/PagSeguroHelper.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/loader/PagSeguroAutoLoader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/loader/PagSeguroAutoLoader.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/log/LogPagSeguro.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/log/LogPagSeguro.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/parser/PagSeguroPaymentParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/parser/PagSeguroPaymentParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/parser/PagSeguroPaymentParserData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/parser/PagSeguroPaymentParserData.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/parser/PagSeguroServiceParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/parser/PagSeguroServiceParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/parser/PagSeguroTransactionParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/parser/PagSeguroTransactionParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/resources/PagSeguroResources.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/resources/PagSeguroResources.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/resources/PagSeguroResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/resources/PagSeguroResources.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/service/PagSeguroConnectionData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/service/PagSeguroConnectionData.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/service/PagSeguroPaymentService.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/service/PagSeguroPaymentService.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/utils/PagSeguroHttpConnection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/utils/PagSeguroHttpConnection.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/lib/utils/PagSeguroXmlParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/lib/utils/PagSeguroXmlParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/pagseguro_jgive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/pagseguro_jgive.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/pagseguro_jgive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/pagseguro_jgive.xml -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/pagseguro_jgive/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/pagseguro_jgive/helper.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive Not 3.0/pagseguro_jgive/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive Not 3.0/pagseguro_jgive/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/en-GB/en-GB.plg_payment_pagseguro_jgive.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/en-GB/en-GB.plg_payment_pagseguro_jgive.ini -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/PagSeguroLibrary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/PagSeguroLibrary.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/config/PagSeguroConfig.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/config/PagSeguroConfig.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/config/PagSeguroConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/config/PagSeguroConfig.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroAccountCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroAccountCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroAddress.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroAddress.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroError.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroError.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroHttpStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroHttpStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroItem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroItem.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroNotificationType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroNotificationType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroPaymentMethod.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroPaymentMethod.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroPaymentMethodCode.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroPaymentMethodCode.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroPaymentMethodType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroPaymentMethodType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroPaymentRequest.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroPaymentRequest.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroPhone.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroPhone.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroSender.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroSender.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroShipping.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroShipping.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroShippingType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroShippingType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroTransaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroTransaction.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroTransactionSearchResult.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroTransactionSearchResult.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroTransactionStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroTransactionStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroTransactionSummary.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroTransactionSummary.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/domain/PagSeguroTransactionType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/domain/PagSeguroTransactionType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/exception/PagSeguroServiceException.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/exception/PagSeguroServiceException.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/helper/PagSeguroHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/helper/PagSeguroHelper.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/loader/PagSeguroAutoLoader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/loader/PagSeguroAutoLoader.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/log/LogPagSeguro.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/log/LogPagSeguro.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/parser/PagSeguroPaymentParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/parser/PagSeguroPaymentParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/parser/PagSeguroPaymentParserData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/parser/PagSeguroPaymentParserData.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/parser/PagSeguroServiceParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/parser/PagSeguroServiceParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/parser/PagSeguroTransactionParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/parser/PagSeguroTransactionParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/resources/PagSeguroResources.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/resources/PagSeguroResources.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/resources/PagSeguroResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/resources/PagSeguroResources.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/service/PagSeguroConnectionData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/service/PagSeguroConnectionData.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/service/PagSeguroNotificationService.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/service/PagSeguroNotificationService.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/service/PagSeguroPaymentService.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/service/PagSeguroPaymentService.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/service/PagSeguroTransactionSearchService.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/service/PagSeguroTransactionSearchService.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/utils/PagSeguroHttpConnection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/utils/PagSeguroHttpConnection.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/lib/utils/PagSeguroXmlParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/lib/utils/PagSeguroXmlParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/pagseguro_jgive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/pagseguro_jgive.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/pagseguro_jgive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/pagseguro_jgive.xml -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/pagseguro_jgive/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/pagseguro_jgive/helper.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jgive/pagseguro_jgive/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jgive/pagseguro_jgive/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/PagSeguroLibrary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/PagSeguroLibrary.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/config/PagSeguroConfig.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/config/PagSeguroConfig.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/config/PagSeguroConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/config/PagSeguroConfig.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroAddress.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroAddress.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroError.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroError.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroHttpStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroHttpStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroItem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroItem.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroPaymentMethod.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroPaymentMethod.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroPhone.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroPhone.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroSender.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroSender.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroShipping.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroShipping.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroShippingType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroShippingType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroTransaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/domain/PagSeguroTransaction.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/helper/PagSeguroHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/helper/PagSeguroHelper.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/loader/PagSeguroAutoLoader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/loader/PagSeguroAutoLoader.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/log/LogPagSeguro.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/log/LogPagSeguro.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/parser/PagSeguroPaymentParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/parser/PagSeguroPaymentParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/parser/PagSeguroServiceParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/parser/PagSeguroServiceParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/resources/PagSeguroResources.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/resources/PagSeguroResources.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/resources/PagSeguroResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/resources/PagSeguroResources.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/lib/utils/PagSeguroXmlParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/lib/utils/PagSeguroXmlParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/pagseguro_jticketing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/pagseguro_jticketing.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/pagseguro_jticketing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/pagseguro_jticketing.xml -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/pagseguro_jticketing/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/pagseguro_jticketing/helper.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing Not 3.0/pagseguro_jticketing/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing Not 3.0/pagseguro_jticketing/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/en-GB/en-GB.plg_payment_pagseguro_jticketing.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/en-GB/en-GB.plg_payment_pagseguro_jticketing.ini -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/PagSeguroLibrary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/PagSeguroLibrary.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/config/PagSeguroConfig.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/config/PagSeguroConfig.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/config/PagSeguroConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/config/PagSeguroConfig.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroAccountCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroAccountCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroAddress.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroAddress.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroError.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroError.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroHttpStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroHttpStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroItem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroItem.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroNotificationType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroNotificationType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroPaymentMethod.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroPaymentMethod.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroPaymentMethodCode.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroPaymentMethodCode.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroPaymentMethodType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroPaymentMethodType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroPaymentRequest.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroPaymentRequest.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroPhone.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroPhone.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroSender.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroSender.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroShipping.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroShipping.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroShippingType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroShippingType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroTransaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroTransaction.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroTransactionStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroTransactionStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroTransactionSummary.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroTransactionSummary.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/domain/PagSeguroTransactionType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/domain/PagSeguroTransactionType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/exception/PagSeguroServiceException.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/exception/PagSeguroServiceException.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/helper/PagSeguroHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/helper/PagSeguroHelper.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/loader/PagSeguroAutoLoader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/loader/PagSeguroAutoLoader.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/log/LogPagSeguro.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/log/LogPagSeguro.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/parser/PagSeguroPaymentParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/parser/PagSeguroPaymentParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/parser/PagSeguroPaymentParserData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/parser/PagSeguroPaymentParserData.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/parser/PagSeguroServiceParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/parser/PagSeguroServiceParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/parser/PagSeguroTransactionParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/parser/PagSeguroTransactionParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/resources/PagSeguroResources.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/resources/PagSeguroResources.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/resources/PagSeguroResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/resources/PagSeguroResources.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/service/PagSeguroConnectionData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/service/PagSeguroConnectionData.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/service/PagSeguroPaymentService.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/service/PagSeguroPaymentService.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/utils/PagSeguroHttpConnection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/utils/PagSeguroHttpConnection.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/lib/utils/PagSeguroXmlParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/lib/utils/PagSeguroXmlParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/pagseguro_jticketing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/pagseguro_jticketing.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/pagseguro_jticketing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/pagseguro_jticketing.xml -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/pagseguro_jticketing/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/pagseguro_jticketing/helper.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_jticketing/pagseguro_jticketing/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_jticketing/pagseguro_jticketing/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/PagSeguroLibrary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/PagSeguroLibrary.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/config/PagSeguroConfig.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/config/PagSeguroConfig.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/config/PagSeguroConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/config/PagSeguroConfig.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroAddress.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroAddress.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroError.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroError.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroHttpStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroHttpStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroItem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroItem.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroPhone.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroPhone.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroSender.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroSender.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroShipping.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroShipping.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroShippingType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroShippingType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroTransaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/domain/PagSeguroTransaction.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/helper/PagSeguroHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/helper/PagSeguroHelper.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/loader/PagSeguroAutoLoader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/loader/PagSeguroAutoLoader.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/log/LogPagSeguro.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/log/LogPagSeguro.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/resources/PagSeguroResources.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/resources/PagSeguroResources.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/resources/PagSeguroResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/resources/PagSeguroResources.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/lib/utils/PagSeguroXmlParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/lib/utils/PagSeguroXmlParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/pagseguro_socialads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/pagseguro_socialads.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/pagseguro_socialads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/pagseguro_socialads.xml -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/pagseguro_socialads/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/pagseguro_socialads/helper.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads Not 3.0/pagseguro_socialads/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads Not 3.0/pagseguro_socialads/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/en-GB/en-GB.plg_payment_pagseguro_socialads.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/en-GB/en-GB.plg_payment_pagseguro_socialads.ini -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/PagSeguroLibrary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/PagSeguroLibrary.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/config/PagSeguroConfig.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/config/PagSeguroConfig.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/config/PagSeguroConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/config/PagSeguroConfig.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroAccountCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroAccountCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroAddress.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroAddress.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroCredentials.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroCredentials.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroError.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroError.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroHttpStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroHttpStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroItem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroItem.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroNotificationType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroNotificationType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroPaymentMethod.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroPaymentMethod.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroPaymentMethodCode.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroPaymentMethodCode.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroPaymentMethodType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroPaymentMethodType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroPaymentRequest.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroPaymentRequest.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroPhone.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroPhone.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroSender.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroSender.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroShipping.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroShipping.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroShippingType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroShippingType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroTransaction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroTransaction.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroTransactionStatus.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroTransactionStatus.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroTransactionSummary.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroTransactionSummary.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/domain/PagSeguroTransactionType.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/domain/PagSeguroTransactionType.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/exception/PagSeguroServiceException.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/exception/PagSeguroServiceException.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/helper/PagSeguroHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/helper/PagSeguroHelper.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/loader/PagSeguroAutoLoader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/loader/PagSeguroAutoLoader.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/log/LogPagSeguro.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/log/LogPagSeguro.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/parser/PagSeguroPaymentParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/parser/PagSeguroPaymentParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/parser/PagSeguroPaymentParserData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/parser/PagSeguroPaymentParserData.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/parser/PagSeguroServiceParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/parser/PagSeguroServiceParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/parser/PagSeguroTransactionParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/parser/PagSeguroTransactionParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/resources/PagSeguroResources.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/resources/PagSeguroResources.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/resources/PagSeguroResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/resources/PagSeguroResources.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/service/PagSeguroConnectionData.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/service/PagSeguroConnectionData.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/service/PagSeguroNotificationService.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/service/PagSeguroNotificationService.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/service/PagSeguroPaymentService.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/service/PagSeguroPaymentService.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/utils/PagSeguroHttpConnection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/utils/PagSeguroHttpConnection.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/lib/utils/PagSeguroXmlParser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/lib/utils/PagSeguroXmlParser.class.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/pagseguro_socialads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/pagseguro_socialads.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/pagseguro_socialads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/pagseguro_socialads.xml -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/pagseguro_socialads/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/pagseguro_socialads/helper.php -------------------------------------------------------------------------------- /code/plugins/pagseguro_socialads/pagseguro_socialads/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/pagseguro_socialads/pagseguro_socialads/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/payfast/en-GB/en-GB.plg_payment_payfast.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payfast/en-GB/en-GB.plg_payment_payfast.ini -------------------------------------------------------------------------------- /code/plugins/payfast/en-GB/en-GB.plg_payment_payfast.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payfast/en-GB/en-GB.plg_payment_payfast.sys.ini -------------------------------------------------------------------------------- /code/plugins/payfast/payfast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payfast/payfast.php -------------------------------------------------------------------------------- /code/plugins/payfast/payfast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payfast/payfast.xml -------------------------------------------------------------------------------- /code/plugins/payfast/payfast/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payfast/payfast/helper.php -------------------------------------------------------------------------------- /code/plugins/payfast/payfast/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payfast/payfast/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/paymill/en-GB.plg_payment_paymill.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/en-GB.plg_payment_paymill.ini -------------------------------------------------------------------------------- /code/plugins/paymill/paymill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill.xml -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/helper.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/index.html -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Apiclient/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Apiclient/Curl.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Apiclient/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Apiclient/Interface.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Apiclient/paymill.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Apiclient/paymill.crt -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Base.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Clients.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Coupons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Coupons.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Exception.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Offers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Offers.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Payments.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Preauthorizations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Preauthorizations.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Refunds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Refunds.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Subscriptions.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Transactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Transactions.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/lib/Services/Paymill/Webhooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/lib/Services/Paymill/Webhooks.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/tmpl/ajax_loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/tmpl/ajax_loader.gif -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/paymill/paymill/tmpl/paymill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paymill/paymill/tmpl/paymill.css -------------------------------------------------------------------------------- /code/plugins/paypal/da-DK/da-DK.plg_payment_paypal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/da-DK/da-DK.plg_payment_paypal.ini -------------------------------------------------------------------------------- /code/plugins/paypal/de-DE/de-DE.plg_payment_paypal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/de-DE/de-DE.plg_payment_paypal.ini -------------------------------------------------------------------------------- /code/plugins/paypal/en-GB/en-GB.plg_payment_paypal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/en-GB/en-GB.plg_payment_paypal.ini -------------------------------------------------------------------------------- /code/plugins/paypal/es-ES/es-ES.plg_payment_paypal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/es-ES/es-ES.plg_payment_paypal.ini -------------------------------------------------------------------------------- /code/plugins/paypal/fr-FR/fr-FR.plg_payment_paypal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/fr-FR/fr-FR.plg_payment_paypal.ini -------------------------------------------------------------------------------- /code/plugins/paypal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/index.html -------------------------------------------------------------------------------- /code/plugins/paypal/it-IT/it-IT.plg_payment_paypal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/it-IT/it-IT.plg_payment_paypal.ini -------------------------------------------------------------------------------- /code/plugins/paypal/nl-NL/nl-NL.plg_payment_paypal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/nl-NL/nl-NL.plg_payment_paypal.ini -------------------------------------------------------------------------------- /code/plugins/paypal/paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/paypal.php -------------------------------------------------------------------------------- /code/plugins/paypal/paypal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/paypal.xml -------------------------------------------------------------------------------- /code/plugins/paypal/paypal/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/paypal/cacert.pem -------------------------------------------------------------------------------- /code/plugins/paypal/paypal/form/paypal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/paypal/form/paypal.xml -------------------------------------------------------------------------------- /code/plugins/paypal/paypal/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/paypal/helper.php -------------------------------------------------------------------------------- /code/plugins/paypal/paypal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/paypal/index.html -------------------------------------------------------------------------------- /code/plugins/paypal/paypal/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/paypal/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/paypal/paypal/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/paypal/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/paypal/paypal/tmpl/recurring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/paypal/tmpl/recurring.php -------------------------------------------------------------------------------- /code/plugins/paypal/pt-PT/pt-PT.plg_payment_paypal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/pt-PT/pt-PT.plg_payment_paypal.ini -------------------------------------------------------------------------------- /code/plugins/paypal/sv-SE/sv-SE.plg_payment_paypal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/sv-SE/sv-SE.plg_payment_paypal.ini -------------------------------------------------------------------------------- /code/plugins/paypal/th-TH/th-TH.plg_payment_paypal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal/th-TH/th-TH.plg_payment_paypal.ini -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/adaptive_paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal_adaptive_payment/adaptive_paypal.php -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/adaptive_paypal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal_adaptive_payment/adaptive_paypal.xml -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/adaptive_paypal/form/adaptive_paypal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal_adaptive_payment/adaptive_paypal/form/adaptive_paypal.xml -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/adaptive_paypal/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal_adaptive_payment/adaptive_paypal/helper.php -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/adaptive_paypal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal_adaptive_payment/adaptive_paypal/index.html -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/adaptive_paypal/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/adaptive_paypal/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal_adaptive_payment/adaptive_paypal/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/adaptive_paypal/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal_adaptive_payment/adaptive_paypal/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/elements/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal_adaptive_payment/elements/index.html -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/elements/logfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal_adaptive_payment/elements/logfile.php -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/en-GB/en-GB.plg_payment_adaptive_paypal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal_adaptive_payment/en-GB/en-GB.plg_payment_adaptive_paypal.ini -------------------------------------------------------------------------------- /code/plugins/paypal_adaptive_payment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypal_adaptive_payment/index.html -------------------------------------------------------------------------------- /code/plugins/paypalpro/da-DK/da-DK.plg_payment_paypalpro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/da-DK/da-DK.plg_payment_paypalpro.ini -------------------------------------------------------------------------------- /code/plugins/paypalpro/de-DE/de-DE.plg_payment_paypalpro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/de-DE/de-DE.plg_payment_paypalpro.ini -------------------------------------------------------------------------------- /code/plugins/paypalpro/en-GB/en-GB.plg_payment_paypalpro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/en-GB/en-GB.plg_payment_paypalpro.ini -------------------------------------------------------------------------------- /code/plugins/paypalpro/en-GB/en-GB.plg_payment_paypalpro.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/en-GB/en-GB.plg_payment_paypalpro.sys.ini -------------------------------------------------------------------------------- /code/plugins/paypalpro/es-ES/es-ES.plg_payment_paypalpro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/es-ES/es-ES.plg_payment_paypalpro.ini -------------------------------------------------------------------------------- /code/plugins/paypalpro/fr-FR/fr-FR.plg_payment_paypalpro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/fr-FR/fr-FR.plg_payment_paypalpro.ini -------------------------------------------------------------------------------- /code/plugins/paypalpro/it-IT/it-IT.plg_payment_paypalpro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/it-IT/it-IT.plg_payment_paypalpro.ini -------------------------------------------------------------------------------- /code/plugins/paypalpro/nl-NL/nl-NL.plg_payment_paypalpro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/nl-NL/nl-NL.plg_payment_paypalpro.ini -------------------------------------------------------------------------------- /code/plugins/paypalpro/paypalpro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/paypalpro.php -------------------------------------------------------------------------------- /code/plugins/paypalpro/paypalpro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/paypalpro.xml -------------------------------------------------------------------------------- /code/plugins/paypalpro/paypalpro/form/paypalpro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/paypalpro/form/paypalpro.xml -------------------------------------------------------------------------------- /code/plugins/paypalpro/paypalpro/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/paypalpro/helper.php -------------------------------------------------------------------------------- /code/plugins/paypalpro/paypalpro/tmpl/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/paypalpro/tmpl/form.php -------------------------------------------------------------------------------- /code/plugins/paypalpro/paypalpro/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/paypalpro/tmpl/index.html -------------------------------------------------------------------------------- /code/plugins/paypalpro/pt-PT/pt-PT.plg_payment_paypalpro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/pt-PT/pt-PT.plg_payment_paypalpro.ini -------------------------------------------------------------------------------- /code/plugins/paypalpro/sv-SE/sv-SE.plg_payment_paypalpro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/sv-SE/sv-SE.plg_payment_paypalpro.ini -------------------------------------------------------------------------------- /code/plugins/paypalpro/th-TH/th-TH.plg_payment_paypalpro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/paypalpro/th-TH/th-TH.plg_payment_paypalpro.ini -------------------------------------------------------------------------------- /code/plugins/payu/en-GB/en-GB.plg_payment_payu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payu/en-GB/en-GB.plg_payment_payu.ini -------------------------------------------------------------------------------- /code/plugins/payu/payu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payu/payu.php -------------------------------------------------------------------------------- /code/plugins/payu/payu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payu/payu.xml -------------------------------------------------------------------------------- /code/plugins/payu/payu/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payu/payu/helper.php -------------------------------------------------------------------------------- /code/plugins/payu/payu/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payu/payu/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/payu/payu/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/plugins/payumoney/en-GB/en-GB.plg_payment_payumoney.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payumoney/en-GB/en-GB.plg_payment_payumoney.ini -------------------------------------------------------------------------------- /code/plugins/payumoney/payumoney.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payumoney/payumoney.php -------------------------------------------------------------------------------- /code/plugins/payumoney/payumoney.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payumoney/payumoney.xml -------------------------------------------------------------------------------- /code/plugins/payumoney/payumoney/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payumoney/payumoney/helper.php -------------------------------------------------------------------------------- /code/plugins/payumoney/payumoney/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/payumoney/payumoney/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/transfirst/en-GB/en-GB.plg_payment_transfirst.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/transfirst/en-GB/en-GB.plg_payment_transfirst.ini -------------------------------------------------------------------------------- /code/plugins/transfirst/en-GB/en-GB.plg_payment_transfirst.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/transfirst/en-GB/en-GB.plg_payment_transfirst.sys.ini -------------------------------------------------------------------------------- /code/plugins/transfirst/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/transfirst/index.html -------------------------------------------------------------------------------- /code/plugins/transfirst/transfirst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/transfirst/transfirst.php -------------------------------------------------------------------------------- /code/plugins/transfirst/transfirst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/transfirst/transfirst.xml -------------------------------------------------------------------------------- /code/plugins/transfirst/transfirst/Transfirst.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/transfirst/transfirst/Transfirst.class.php -------------------------------------------------------------------------------- /code/plugins/transfirst/transfirst/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/transfirst/transfirst/helper.php -------------------------------------------------------------------------------- /code/plugins/transfirst/transfirst/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/transfirst/transfirst/index.html -------------------------------------------------------------------------------- /code/plugins/transfirst/transfirst/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/transfirst/transfirst/tmpl/default.php -------------------------------------------------------------------------------- /code/plugins/transfirst/transfirst/tmpl/default_bs3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/transfirst/transfirst/tmpl/default_bs3.php -------------------------------------------------------------------------------- /code/plugins/transfirst/transfirst/tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techjoomla/joomla-payments/HEAD/code/plugins/transfirst/transfirst/tmpl/index.html --------------------------------------------------------------------------------