You are here

public function Edit::submitForm in SimpleAds 8

Same name in this branch
  1. 8 src/Form/Groups/Edit.php \Drupal\simpleads\Form\Groups\Edit::submitForm()
  2. 8 src/Form/Ads/Edit.php \Drupal\simpleads\Form\Ads\Edit::submitForm()
  3. 8 src/Form/Campaigns/Edit.php \Drupal\simpleads\Form\Campaigns\Edit::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/Campaigns/Edit.php, line 85

Class

Edit
Edit advertisement campaign form.

Namespace

Drupal\simpleads\Form\Campaigns

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  $id = $form_state
    ->getValue('id');
  $type = $form_state
    ->getValue('campaign_type');
  $campaigns = (new Campaigns())
    ->setId($id)
    ->load();
  $options = $campaigns
    ->getOptions(TRUE);
  $options = $campaigns
    ->getSubmitForm('update', $options, $form_state, $type, $id);
  $campaigns
    ->setCampaignName($form_state
    ->getValue('name'))
    ->setDescription($form_state
    ->getValue('description'))
    ->setType($type)
    ->setOptions($options)
    ->setStatus($form_state
    ->getValue('status'))
    ->save();
  $form_state
    ->setRedirect('simpleads.campaigns');
}