*/ class Mage_Adminhtml_Block_Notification_Grid_Renderer_Notice extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract { /** * Renders grid column * * @param Varien_Object $row * @return string */ public function render(Varien_Object $row) { return '' . $row->getTitle() . '' . ($row->getDescription() ? '
' . $row->getDescription() : ''); } }