22 Apr 2020
Redirect Method in DRUPAL8
Published On: Wed, 04/22/2020 - 22:13
Method to redirect on node id url
$url = Url::fromRoute('entity.node.canonical', ['node' => $nid]); $form_state->setRedirectUrl($url);
Method to redirect on custom url
$url = Url::fromRoute('olsys.mycustom_dashboard'); $form_state->setRedirectUrl($url);
Redirect on user view page of loggedin user
use Drupal\Core\Controller\ControllerBase; // Use this on top return $this->redirect('user.page'); // use this as your code $url = \Drupal\…