getValue('site_' . $key); } \Drupal::state()->set('d8', array_filter($values)); } } /** * Redirect on the front page after logging in if this page is set. */ function _d8_user_login_form_submit( array &$form, FormStateInterface $form_state ): void { if (!\Drupal::request()->request->has('destination')) { $path = \Drupal::configFactory()->get('system.site')->get('page.front'); if (!empty($path)) { $form_state->setRedirectUrl(Url::fromUserInput($path)); } } }