You are here

public function Delete::submitForm in SimpleAds 8

Same name in this branch
  1. 8 src/Form/Groups/Delete.php \Drupal\simpleads\Form\Groups\Delete::submitForm()
  2. 8 src/Form/Ads/Delete.php \Drupal\simpleads\Form\Ads\Delete::submitForm()
  3. 8 src/Form/Campaigns/Delete.php \Drupal\simpleads\Form\Campaigns\Delete::submitForm()

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

src/Form/Ads/Delete.php, line 81

Class

Delete
Delete advertisement form.

Namespace

Drupal\simpleads\Form\Ads

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  $options = $this->ad
    ->getOptions(TRUE);
  $this->ad
    ->getSubmitForm('delete', $options, $form_state, $form_state
    ->getValue('ad_type'), $form_state
    ->getValue('id'));
  $this->ad
    ->delete();
  $form_state
    ->setRedirect('simpleads.ads');
}