You are here

public function OnsiteBase::buildConfigurationForm in Commerce Authorize.Net 8

Form constructor.

Plugin forms are embedded in other forms. In order to know where the plugin form is located in the parent form, #parents and #array_parents must be known, but these are not available during the initial build phase. In order to have these properties available when building the plugin form's elements, let this method return a form element that has a #process callback and build the rest of the form in the callback. By the time the callback is executed, the element's #parents and #array_parents properties will have been set by the form API. For more documentation on #parents and #array_parents, see \Drupal\Core\Render\Element\FormElement.

Parameters

array $form: An associative array containing the initial structure of the plugin form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().

Return value

array The form structure.

Overrides OnsitePaymentGatewayBase::buildConfigurationForm

1 call to OnsiteBase::buildConfigurationForm()
AcceptJs::buildConfigurationForm in src/Plugin/Commerce/PaymentGateway/AcceptJs.php
Form constructor.
1 method overrides OnsiteBase::buildConfigurationForm()
AcceptJs::buildConfigurationForm in src/Plugin/Commerce/PaymentGateway/AcceptJs.php
Form constructor.

File

src/Plugin/Commerce/PaymentGateway/OnsiteBase.php, line 140

Class

OnsiteBase
Provides the Authorize.net payment gateway base class.

Namespace

Drupal\commerce_authnet\Plugin\Commerce\PaymentGateway

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
  $form = parent::buildConfigurationForm($form, $form_state);
  $form['api_login'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Login ID'),
    '#default_value' => $this->configuration['api_login'],
    '#required' => TRUE,
  ];
  $form['transaction_key'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Transaction Key'),
    '#default_value' => $this->configuration['transaction_key'],
    '#required' => TRUE,
  ];
  $form['client_key'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Client Key'),
    '#description' => $this
      ->t('Follow the instructions <a href="https://developer.authorize.net/api/reference/features/acceptjs.html#Obtaining_a_Public_Client_Key">here</a> to get a client key.'),
    '#default_value' => $this->configuration['client_key'],
    '#required' => TRUE,
  ];
  try {
    $url = Url::fromRoute('entity.commerce_checkout_flow.collection');
    $form['transaction_type'] = [
      '#markup' => $this
        ->t('<p>To configure the transaction settings, modify the <em>Payment process</em> pane in your checkout flow. From there you can choose authorization only or authorization and capture. You can manage your checkout flows here: <a href=":url">:url</a></p>', [
        ':url' => $url
          ->toString(),
      ]) . $this
        ->t('<p>For Echeck to work Transaction Details API needs to be enabled in your merchant account ("Account" => "Transaction Details API").</p>'),
    ];
  } catch (\Exception $e) {

    // Route was malformed, such as checkout not being enabled. So do nothing.
  }
  return $form;
}