getColumn()->getStringLimit()) { $truncateLength = $this->getColumn()->getStringLimit(); } if ($this->getColumn()->getTruncate()) { $truncateLength = $this->getColumn()->getTruncate(); } $text = $this->filterManager->truncate(parent::_getValue($row), ['length' => $truncateLength]); if (!$this->getColumn()->hasEscape() || $this->getColumn()->getEscape()) { $text = $this->escapeHtml($text); } if ($this->getColumn()->getNl2br()) { $text = nl2br($text); } return $text; } }