You are here

public function CampaignMonitorLocalQueueForm::submitForm in Campaign Monitor 8

Form submission handler.

Parameters

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

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Overrides FormInterface::submitForm

File

modules/campaignmonitor_local/src/Form/CampaignMonitorLocalQueueForm.php, line 75

Class

CampaignMonitorLocalQueueForm

Namespace

Drupal\campaignmonitor_local\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  $url = Url::fromRoute('campaignmonitor_local.batch');
  $form_state
    ->setRedirectUrl($url);
}