Url::setUnroutedUrlAssembler

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

public function setUnroutedUrlAssembler(UnroutedUrlAssemblerInterface $url_assembler) {
  $this->urlAssembler = $url_assembler;
  return $this;
}
doc_Drupal
2016-10-29 09:51:43
Comments
Leave a Comment

Please login to continue.