Example #1
0
 /**
  * {@inheritdoc}
  */
 public function save(array $form, FormStateInterface $form_state)
 {
     $this->entity->save();
     $form_state->setRedirectUrl($this->entity->urlInfo('collection'));
 }
 /**
  * Performs an operation on the search page entity.
  *
  * @param \Drupal\search\SearchPageInterface $search_page
  *   The search page entity.
  * @param string $op
  *   The operation to perform, usually 'enable' or 'disable'.
  *
  * @return \Symfony\Component\HttpFoundation\RedirectResponse
  *   A redirect back to the search settings page.
  */
 public function performOperation(SearchPageInterface $search_page, $op)
 {
     $search_page->{$op}()->save();
     if ($op == 'enable') {
         drupal_set_message($this->t('The %label search page has been enabled.', array('%label' => $search_page->label())));
     } elseif ($op == 'disable') {
         drupal_set_message($this->t('The %label search page has been disabled.', array('%label' => $search_page->label())));
     }
     $url = $search_page->urlInfo('collection');
     return $this->redirect($url->getRouteName(), $url->getRouteParameters(), $url->getOptions());
 }