Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Notice.php
Go to the documentation of this file.
1 <?php
9 
10 class Notice extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\AbstractRenderer
11 {
18  public function render(\Magento\Framework\DataObject $row)
19  {
20  return '<span class="grid-row-title">' .
21  $this->escapeHtml($row->getTitle()) .
22  '</span>' .
23  ($row->getDescription() ? '<br />' . $this->escapeHtml($row->getDescription()) : '');
24  }
25 }
render(\Magento\Framework\DataObject $row)
Definition: Notice.php:18