| Current Path : /home/rtorresani/www/vendor/mageplaza/module-smtp/Ui/Component/Listing/Column/ |
| Current File : //home/rtorresani/www/vendor/mageplaza/module-smtp/Ui/Component/Listing/Column/Views.php |
<?php
/**
* Mageplaza
*
* NOTICE OF LICENSE
*
* This source file is subject to the mageplaza.com license that is
* available through the world-wide-web at this URL:
* https://www.mageplaza.com/LICENSE.txt
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this extension to newer
* version in the future.
*
* @category Mageplaza
* @package Mageplaza_Smtp
* @copyright Copyright (c) Mageplaza (https://www.mageplaza.com/)
* @license https://www.mageplaza.com/LICENSE.txt
*/
namespace Mageplaza\Smtp\Ui\Component\Listing\Column;
use Magento\Framework\UrlInterface;
use Magento\Framework\View\Element\UiComponent\ContextInterface;
use Magento\Framework\View\Element\UiComponentFactory;
use Magento\Ui\Component\Listing\Columns\Column;
/**
* Class Views
* @package Mageplaza\Smtp\Ui\Component\Listing\Column
*/
class Views extends Column
{
/**
* @var UrlInterface
*/
private $urlBuilder;
/**
* Views constructor.
*
* @param ContextInterface $context
* @param UiComponentFactory $uiComponentFactory
* @param UrlInterface $urlBuilder
* @param array $components
* @param array $data
*/
public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
UrlInterface $urlBuilder,
array $components = [],
array $data = []
) {
parent::__construct($context, $uiComponentFactory, $components, $data);
$this->urlBuilder = $urlBuilder;
}
/**
* Prepare Data Source
*
* @param array $dataSource
*
* @return array
*/
public function prepareDataSource(array $dataSource)
{
if (isset($dataSource['data']['items'])) {
foreach ($dataSource['data']['items'] as & $item) {
$url = $this->urlBuilder->getUrl(
'adminhtml/smtp_abandonedcart/view',
['id' => $item['entity_id']]
);
$item[$this->getData('name')] = [
'view' => [
'label' => __('View'),
'href' => $url
]
];
}
}
return $dataSource;
}
}