| Current Path : /var/www/html/generated/code/Magento/Backend/Block/Dashboard/Grids/ |
| Current File : /var/www/html/generated/code/Magento/Backend/Block/Dashboard/Grids/Interceptor.php |
<?php
namespace Magento\Backend\Block\Dashboard\Grids;
/**
* Interceptor class for @see \Magento\Backend\Block\Dashboard\Grids
*/
class Interceptor extends \Magento\Backend\Block\Dashboard\Grids implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(\Magento\Backend\Block\Template\Context $context, \Magento\Framework\Json\EncoderInterface $jsonEncoder, \Magento\Backend\Model\Auth\Session $authSession, array $data = [])
{
$this->___init();
parent::__construct($context, $jsonEncoder, $authSession, $data);
}
/**
* {@inheritdoc}
*/
public function toHtml()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'toHtml');
return $pluginInfo ? $this->___callPlugins('toHtml', func_get_args(), $pluginInfo) : parent::toHtml();
}
}