public Url::setUnroutedUrlAssembler(UnroutedUrlAssemblerInterface $url_assembler)
Sets the unrouted URL assembler.
Parameters
\Drupal\Core\Utility\UnroutedUrlAssemblerInterface $url_assembler: The unrouted URL assembler.
Return value
$this
File
- core/lib/Drupal/Core/Url.php, line 867
Class
- Url
- Defines an object that holds information about a URL.
Namespace
Drupal\Core
Code
1 2 3 4 | public function setUnroutedUrlAssembler(UnroutedUrlAssemblerInterface $url_assembler ) { $this ->urlAssembler = $url_assembler ; return $this ; } |
Please login to continue.