| Current Path : /home/rtorresani/www/generated/code/Magento/Ui/Controller/Adminhtml/Bookmark/Save/ |
| Current File : //home/rtorresani/www/generated/code/Magento/Ui/Controller/Adminhtml/Bookmark/Save/Interceptor.php |
<?php
namespace Magento\Ui\Controller\Adminhtml\Bookmark\Save;
/**
* Interceptor class for @see \Magento\Ui\Controller\Adminhtml\Bookmark\Save
*/
class Interceptor extends \Magento\Ui\Controller\Adminhtml\Bookmark\Save implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\View\Element\UiComponentFactory $factory, \Magento\Ui\Api\BookmarkRepositoryInterface $bookmarkRepository, \Magento\Ui\Api\BookmarkManagementInterface $bookmarkManagement, \Magento\Ui\Api\Data\BookmarkInterfaceFactory $bookmarkFactory, \Magento\Authorization\Model\UserContextInterface $userContext, \Magento\Framework\Json\DecoderInterface $jsonDecoder, ?\Magento\Framework\Serialize\Serializer\Json $serializer = null)
{
$this->___init();
parent::__construct($context, $factory, $bookmarkRepository, $bookmarkManagement, $bookmarkFactory, $userContext, $jsonDecoder, $serializer);
}
/**
* {@inheritdoc}
*/
public function execute()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute');
return $pluginInfo ? $this->___callPlugins('execute', func_get_args(), $pluginInfo) : parent::execute();
}
/**
* {@inheritdoc}
*/
public function executeAjaxRequest()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'executeAjaxRequest');
return $pluginInfo ? $this->___callPlugins('executeAjaxRequest', func_get_args(), $pluginInfo) : parent::executeAjaxRequest();
}
/**
* {@inheritdoc}
*/
public function dispatch(\Magento\Framework\App\RequestInterface $request)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'dispatch');
return $pluginInfo ? $this->___callPlugins('dispatch', func_get_args(), $pluginInfo) : parent::dispatch($request);
}
/**
* {@inheritdoc}
*/
public function _processUrlKeys()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, '_processUrlKeys');
return $pluginInfo ? $this->___callPlugins('_processUrlKeys', func_get_args(), $pluginInfo) : parent::_processUrlKeys();
}
/**
* {@inheritdoc}
*/
public function getUrl($route = '', $params = [])
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUrl');
return $pluginInfo ? $this->___callPlugins('getUrl', func_get_args(), $pluginInfo) : parent::getUrl($route, $params);
}
/**
* {@inheritdoc}
*/
public function getActionFlag()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getActionFlag');
return $pluginInfo ? $this->___callPlugins('getActionFlag', func_get_args(), $pluginInfo) : parent::getActionFlag();
}
/**
* {@inheritdoc}
*/
public function getRequest()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getRequest');
return $pluginInfo ? $this->___callPlugins('getRequest', func_get_args(), $pluginInfo) : parent::getRequest();
}
/**
* {@inheritdoc}
*/
public function getResponse()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResponse');
return $pluginInfo ? $this->___callPlugins('getResponse', func_get_args(), $pluginInfo) : parent::getResponse();
}
}