| Current Path : /home/rtorresani/www/app/code/Amasty/Rewards/Block/Adminhtml/Rule/Grid/Renderer/ |
| Current File : //home/rtorresani/www/app/code/Amasty/Rewards/Block/Adminhtml/Rule/Grid/Renderer/Methods.php |
<?php
/**
* @author Amasty Team
* @copyright Copyright (c) 2023 Amasty (https://www.amasty.com)
* @package Reward Points Base for Magento 2
*/
/**
* Copyright © 2015 Amasty. All rights reserved.
*/
namespace Amasty\Rewards\Block\Adminhtml\Rule\Grid\Renderer;
class Methods extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\Input
{
public function render(\Magento\Framework\DataObject $row)
{
$methods = $row->getData('methods');
if (!$methods) {
return __('Any');
}
return nl2br($methods);
}
}