Removed obsolete class SofortUeberweisungPaymentMethod
authorMarcel Werk <burntime@woltlab.com>
Mon, 8 Aug 2016 14:57:15 +0000 (16:57 +0200)
committerMarcel Werk <burntime@woltlab.com>
Mon, 8 Aug 2016 14:57:29 +0000 (16:57 +0200)
com.woltlab.wcf/objectType.xml
wcfsetup/install/files/lib/system/payment/method/SofortUeberweisungPaymentMethod.class.php [deleted file]

index ac703d263e09c5b1a63b5ca573a5532dc922056d..7e8e7d82533d9208cc790334108a5e5ccba15242 100644 (file)
                        <classname>wcf\system\payment\method\PaypalPaymentMethod</classname>
                </type>
                
-               <!-- <type>
-                       <name>com.woltlab.wcf.payment.method.sofortUeberweisung</name>
-                       <definitionname>com.woltlab.wcf.payment.method</definitionname>
-                       <classname>wcf\system\payment\method\SofortUeberweisungPaymentMethod</classname>
-               </type>-->
-               
                <type>
                        <name>com.woltlab.wcf.payment.type.paidSubscription</name>
                        <definitionname>com.woltlab.wcf.payment.type</definitionname>
diff --git a/wcfsetup/install/files/lib/system/payment/method/SofortUeberweisungPaymentMethod.class.php b/wcfsetup/install/files/lib/system/payment/method/SofortUeberweisungPaymentMethod.class.php
deleted file mode 100644 (file)
index 0ed60e2..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-namespace wcf\system\payment\method;
-
-/**
- * IPaymentMethod implementation for SofortUeberweisung.
- * 
- * @author     Marcel Werk
- * @copyright  2001-2016 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    WoltLabSuite\Core\System\Payment\Method
- */
-class SofortUeberweisungPaymentMethod extends AbstractPaymentMethod {
-       /**
-        * @inheritDoc
-        */
-       public function getSupportedCurrencies() {
-               return [
-                       'EUR' // Euro
-               ];
-       }
-       
-       /**
-        * @inheritDoc
-        */
-       public function getPurchaseButton($cost, $currency, $name, $token, $returnURL, $cancelReturnURL, $isRecurring = false, $subscriptionLength = 0, $subscriptionLengthUnit = '') {
-               // @todo
-       }
-}