コード例 #1
0
ファイル: Payment.php プロジェクト: rpquadrat/core
 /**
  * Get the checkout surcharge for this payment method
  *
  * @return  \Isotope\Model\ProductCollectionSurcharge\Payment|null
  */
 public function getSurcharge($objCollection)
 {
     if ($this->getPrice() == 0) {
         return null;
     }
     return ProductCollectionSurcharge::createForPaymentInCollection($this, $objCollection);
 }