You are here

PardotContactFormMapAddForm.php in Pardot Integration 8

Namespace

Drupal\pardot\Form

File

src/Form/PardotContactFormMapAddForm.php
View source
<?php

namespace Drupal\pardot\Form;

use Drupal\Core\Form\FormStateInterface;

/**
 * Class PardotContactFormMapAddForm.
 *
 * Provides the add form for our Pardot Campaign entity.
 *
 * @package Drupal\pardot\Form
 *
 * @ingroup pardot
 */
class PardotContactFormMapAddForm extends PardotContactFormMapFormBase {

  /**
   * Returns the actions provided by this form.
   *
   * For our add form, we only need to change the text of the submit button.
   *
   * @param array $form
   *   An associative array containing the structure of the form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   An associative array containing the current state of the form.
   *
   * @return array
   *   An array of supported actions for the current entity form.
   */
  protected function actions(array $form, FormStateInterface $form_state) {
    $actions = parent::actions($form, $form_state);
    $actions['submit']['#value'] = $this
      ->t('Create a Pardot Contact Form Mapping');
    return $actions;
  }

}

Classes

Namesort descending Description
PardotContactFormMapAddForm Class PardotContactFormMapAddForm.