You are here

function PaymentMethodBasicController::__construct in Payment 7

File

modules/paymentmethodbasic/paymentmethodbasic.module, line 100
Hook implementations and shared functions.

Class

PaymentMethodBasicController
A basic payment method controller.

Code

function __construct() {
  $this->title = t('Basic');
  $this->description = t("A 'dumb' payment method type that always successfully executes payments, but never actually transfers money. It can be useful for <em>collect on delivery</em>, for instance.");
}