public function DefaultsSectionStorage::getLayoutBuilderUrl in Drupal 8
Same name and namespace in other branches
- 9 core/modules/layout_builder/src/Plugin/SectionStorage/DefaultsSectionStorage.php \Drupal\layout_builder\Plugin\SectionStorage\DefaultsSectionStorage::getLayoutBuilderUrl()
 
Gets the URL used to display the Layout Builder UI.
Parameters
string $rel: (optional) The link relationship type, for example: 'view' or 'disable'. Defaults to 'view'.
Return value
\Drupal\Core\Url The URL object.
Overrides SectionStorageInterface::getLayoutBuilderUrl
File
- core/
modules/ layout_builder/ src/ Plugin/ SectionStorage/ DefaultsSectionStorage.php, line 126  
Class
- DefaultsSectionStorage
 - Defines the 'defaults' section storage type.
 
Namespace
Drupal\layout_builder\Plugin\SectionStorageCode
public function getLayoutBuilderUrl($rel = 'view') {
  return Url::fromRoute("layout_builder.{$this->getStorageType()}.{$this->getDisplay()->getTargetEntityTypeId()}.{$rel}", $this
    ->getRouteParameters());
}