public ContactForm::setRedirectPath($redirect)
Sets the redirect path.
Parameters
string $redirect: The desired path.
Return value
$this
Overrides ContactFormInterface::setRedirectPath
File
- core/modules/contact/src/Entity/ContactForm.php, line 152
Class
- ContactForm
- Defines the contact form entity.
Namespace
Drupal\contact\Entity
Code
1 2 3 4 | public function setRedirectPath( $redirect ) { $this ->redirect = $redirect ; return $this ; } |
Please login to continue.