Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/app/code/Amasty/Rewards/Block/Adminhtml/Rewards/Widget/Grid/Renderer/
Upload File :
Current File : //home/rtorresani/www/app/code/Amasty/Rewards/Block/Adminhtml/Rewards/Widget/Grid/Renderer/Date.php

<?php
/**
 * @author Amasty Team
 * @copyright Copyright (c) 2023 Amasty (https://www.amasty.com)
 * @package Reward Points Base for Magento 2
 */

namespace Amasty\Rewards\Block\Adminhtml\Rewards\Widget\Grid\Renderer;

use Amasty\Rewards\Api\Data\RewardsInterface;

class Date extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\Input
{
    public function render(\Magento\Framework\DataObject $row)
    {
        if (!$date = $row->getData(RewardsInterface::EXPIRATION_DATE)) {
            return __('Not Expiring');
        }

        return $this->formatDate($date);
    }
}