Skip to content
Code-Schnipsel Gruppen Projekte
Commit a615c6ae erstellt von Patrick Müller's avatar Patrick Müller
Dateien durchsuchen

initial commit

Übergeordnete
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
payment-amazon
========
Amazon Pay - Payment method for QUIQQER ERP stack
Paketname:
quiqqer/payment-amazon
Features (Funktionen)
--------
Installation
------------
Der Paketname ist: quiqqer/payment-amazon
Mitwirken
----------
- Issue Tracker:
- Source Code:
Support
-------
Falls Sie einen Fehler gefunden haben oder Verbesserungen wünschen,
senden Sie bitte eine E-Mail an support@pcsg.de.
Lizenz
-------
Entwickler
--------
{
"name": "quiqqer/payment-amazon",
"type": "quiqqer-plugin",
"description": "Amazon Pay - Payment method for QUIQQER ERP stack",
"version": "dev-dev",
"license": "GPL-3.0+",
"authors": [
{
"name": "Patrick Müller",
"email": "p.mueller@pcsg.de",
"homepage": "http://www.pcsg.de",
"role": "Developer"
}
],
"support": {
"email": "support@pcsg.de",
"url": "http://www.pcsg.de"
},
"require": {
"quiqqer/payments": ">=1.0|dev-master|dev-dev"
},
"autoload": {
"psr-4": {
"QUI\\ERP\\Payments\\Amazon\\": "src/QUI/ERP/Payments/Amazon"
}
}
}
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<locales>
<groups name="quiqqer/payment-amazon" datatype="php,js">
<locale name="package.title">
<de><![CDATA[Amazon Pay für den QUIQQER ERP stack]]></de>
<en><![CDATA[Amazon Pay for QUIQQER ERP stack]]></en>
</locale>
<locale name="package.description"><de><![CDATA[Bietet die Möglichkeit, Bestellungen mit Amazon Pay zu bezahlen]]></de><en><![CDATA[Offerd the option to pay orders via Amazon Pay]]></en></locale></groups>
</locales>
<quiqqer>
<package>
<title>
<locale group='quiqqer/payment-amazon' var='package.title'/>
</title>
<description>
<locale group='quiqqer/payment-amazon' var='package.description'/>
</description>
<!-- Hauptbild -->
<image src='URL_OPT_DIR/quiqqer/payment-amazon/bin/quiqqer_logo.png'/>
<!-- More preview images
<preview>
<image src="URL_OPT_DIR/quiqqer/quiqqer/bin/preview/1.png"/>
<image src="URL_OPT_DIR/quiqqer/quiqqer/bin/preview/2.png"/>
<image src="URL_OPT_DIR/quiqqer/quiqqer/bin/preview/3.png"/>
<image src="URL_OPT_DIR/quiqqer/quiqqer/bin/preview/4.png"/>
<image src="URL_OPT_DIR/quiqqer/quiqqer/bin/preview/5.png"/>
</preview>
-->
</package>
</quiqqer>
\ No newline at end of file
<?php
/**
* This file contains QUI\ERP\Payments\Example\Payment
*/
namespace QUI\ERP\Payments\Amazon;
use QUI;
use QUI\ERP\Order\AbstractOrder;
use QUI\ERP\Accounting\Payments\Transactions\Factory as Transactions;
/**
* Class Payment
* - This class is your main API point for your payment type
*
* @package QUI\ERP\Payments\Example\Example
*/
class Payment extends QUI\ERP\Accounting\Payments\Api\AbstractPayment
{
/**
* @return string
*/
public function getTitle()
{
// TODO: Implement getTitle() method.
}
/**
* @return string
*/
public function getDescription()
{
// TODO: Implement getDescription() method.
}
/**
* Is the payment successful?
* This method returns the payment success type
*
* @param string $hash - Vorgangsnummer - hash number - procedure number
* @return bool
*/
public function isSuccessful($hash)
{
// TODO: Implement isSuccessful() method.
}
}
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren