public function SocialUserController::otherUserPage in Open Social 8
Same name and namespace in other branches
- 8.9 modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
- 8.2 modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
- 8.3 modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
- 8.4 modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
- 8.5 modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
- 8.6 modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
- 8.7 modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
- 8.8 modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
- 10.3.x modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
- 10.0.x modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
- 10.1.x modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
- 10.2.x modules/social_features/social_user/src/Controller/SocialUserController.php \Drupal\social_user\Controller\SocialUserController::otherUserPage()
OtherUserPage.
Return value
RedirectResponse Return Redirect to the user account.
1 string reference to 'SocialUserController::otherUserPage'
- social_user.routing.yml in modules/
social_features/ social_user/ social_user.routing.yml - modules/social_features/social_user/social_user.routing.yml
File
- modules/
social_features/ social_user/ src/ Controller/ SocialUserController.php, line 23
Class
- SocialUserController
- Class SocialUserController.
Namespace
Drupal\social_user\ControllerCode
public function otherUserPage(UserInterface $user) {
return $this
->redirect('entity.user.canonical', [
'user' => $user
->id(),
]);
}