public function Create::submitForm in SimpleAds 8
Same name in this branch
- 8 src/Form/Groups/Create.php \Drupal\simpleads\Form\Groups\Create::submitForm()
- 8 src/Form/Ads/Create.php \Drupal\simpleads\Form\Ads\Create::submitForm()
- 8 src/Form/Campaigns/Create.php \Drupal\simpleads\Form\Campaigns\Create::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/ Create.php, line 105
Class
- Create
- New advertisement form.
Namespace
Drupal\simpleads\Form\AdsCode
public function submitForm(array &$form, FormStateInterface $form_state) {
$ads = new Ads();
$type = $form_state
->getValue('ad_type');
$options['url'] = $form_state
->getValue('url');
$options['url_target'] = $form_state
->getValue('url_target');
$options = $ads
->getSubmitForm('create', $options, $form_state, $type);
$ads
->setAdName($form_state
->getValue('name'))
->setDescription($form_state
->getValue('description'))
->setType($type)
->setGroup((new Groups())
->setId($form_state
->getValue('group_id'))
->load())
->setCampaign((new Campaigns())
->setId($form_state
->getValue('campaign_id'))
->load())
->setOptions($options)
->setStatus($form_state
->getValue('status'))
->save();
$form_state
->setRedirect('simpleads.ads');
}