Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Link.php
Go to the documentation of this file.
1 <?php
14 namespace Magento\UrlRewrite\Block;
15 
17 {
23  protected function _toHtml()
24  {
25  return '<p>' . $this->getLabel() . ' <a href="' . $this->getItemUrl() . '">' . $this->escapeHtml(
26  $this->getItemName()
27  ) . '</a></p>';
28  }
29 }