public function SearchContentForm::submitForm in Open Social 8.4
Same name and namespace in other branches
- 8.9 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::submitForm()
- 8 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::submitForm()
- 8.2 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::submitForm()
- 8.3 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::submitForm()
- 8.5 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::submitForm()
- 8.6 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::submitForm()
- 8.7 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::submitForm()
- 8.8 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::submitForm()
- 10.3.x modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::submitForm()
- 10.0.x modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::submitForm()
- 10.1.x modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::submitForm()
- 10.2.x modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::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
- modules/
social_features/ social_search/ src/ Form/ SearchContentForm.php, line 75
Class
- SearchContentForm
- Class SearchContentForm.
Namespace
Drupal\social_search\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
$search_all_view = 'search_all';
if (empty($form_state
->getValue('search_input_content'))) {
// Redirect to the search content page with empty search values.
$search_content_page = Url::fromRoute("view.{$search_all_view}.page_no_value");
}
else {
// Redirect to the search content page with filters in the GET parameters.
$search_input = Html::escape($form_state
->getValue('search_input_content'));
$search_input = preg_replace('/[\\/]+/', ' ', $search_input);
$search_content_page = Url::fromRoute("view.{$search_all_view}.page", [
'keys' => $search_input,
]);
}
$redirect_path = $search_content_page
->toString();
$query = UrlHelper::filterQueryParameters($this->requestStack
->getCurrentRequest()->query
->all(), [
'page',
]);
$redirect = Url::fromUserInput($redirect_path, [
'query' => $query,
]);
$form_state
->setRedirectUrl($redirect);
}