コード例 #1
0
 public function testSetBillcode()
 {
     $SofortLibBillcodeDetails = new SofortLibBillcodeDetails(self::$configkey);
     $billcode = '456789';
     $SofortLibBillcodeDetails->setBillcode($billcode);
     $parameters = $SofortLibBillcodeDetails->getParameters();
     $this->assertEquals($billcode, $parameters['billcode']);
 }
コード例 #2
0
<?php

require_once dirname(__FILE__) . '/../billcode/sofortLibBillcode.inc.php';
// enter your configuration key – you only can create a new configuration key by creating
// a new Gateway project in your account at sofort.com
$configkey = '12345:123456:edc788a4316ce7e2ac0ede037aa623d7';
$SofortLibBillcode = new SofortLibBillcode($configkey);
$SofortLibBillcode->setAmount(5.55)->setCurrencyCode('EUR')->setReason('Reason Line 1', 'Reason Line 2')->setSuccessUrl('http://www.google.de')->setSuccessLinkRedirect(0)->setAbortUrl('http://www.sofort.com')->setNotificationUrl('http://www.diesundjenes.de/notify')->setUserVariable('schwuppsen');
$SofortLibBillcode->createBillcode();
if ($SofortLibBillcode->isError()) {
    //Sofort-API didn't accept the data
    echo $SofortLibBillcode->getError();
} else {
    //Retrieve Paycode or Paycode URL
    require_once dirname(__FILE__) . '/../billcode/sofortLibBillcodeDetails.inc.php';
    $SofortLibBillcodeDetails = new SofortLibBillcodeDetails($configkey);
    $SofortLibBillcodeDetails->setBillcode($SofortLibBillcode->getBillcode());
    $SofortLibBillcodeDetails->sendRequest();
    echo $SofortLibBillcodeDetails->getStatus() . '<br/>';
    echo $SofortLibBillcodeDetails->getProjectId() . '<br/>';
    echo $SofortLibBillcodeDetails->getTransaction() . '<br/>';
    echo $SofortLibBillcodeDetails->getAmount() . '<br/>';
    echo $SofortLibBillcodeDetails->getReason() . '<br/>';
    echo $SofortLibBillcodeDetails->getReason(0) . '<br/>';
    echo $SofortLibBillcodeDetails->getReason(1) . '<br/>';
    echo $SofortLibBillcodeDetails->getTimeCreated() . '<br/>';
    echo $SofortLibBillcodeDetails->getStartDate() . '<br/>';
    echo $SofortLibBillcodeDetails->getTimeUsed() . '<br/>';
    echo $SofortLibBillcodeDetails->getEndDate() . '<br/>';
    echo $SofortLibBillcodeDetails->getCurrencyCode() . '<br/>';
    echo $SofortLibBillcodeDetails->getLanguageCode() . '<br/>';