update gitignore
This commit is contained in:
		
							parent
							
								
									23a7e0acbd
								
							
						
					
					
						commit
						dc00cd3cad
					
				|  | @ -64,6 +64,8 @@ RUN sed -i 's/memory_limit = 128M/memory_limit = -1/' /etc/php81/php.ini | ||||||
| WORKDIR /var/www/html | WORKDIR /var/www/html | ||||||
| 
 | 
 | ||||||
| # Composer | # Composer | ||||||
|  | COPY ./composer.json /var/www/html/ | ||||||
|  | COPY ./auth.json /var/www/html/ | ||||||
| RUN composer install | RUN composer install | ||||||
| 
 | 
 | ||||||
| COPY ./docker-entrypoint.sh /docker-entrypoint.sh | COPY ./docker-entrypoint.sh /docker-entrypoint.sh | ||||||
|  |  | ||||||
|  | @ -304,10 +304,10 @@ return [ | ||||||
|         'Magento_Tax' => 1, |         'Magento_Tax' => 1, | ||||||
|         'Magento_TaxGraphQl' => 1, |         'Magento_TaxGraphQl' => 1, | ||||||
|         'Magento_TaxImportExport' => 1, |         'Magento_TaxImportExport' => 1, | ||||||
|         'Magento_TwoFactorAuth' => 1, |         'Magento_TwoFactorAuth' => 0, | ||||||
|         'Magento_ThemeGraphQl' => 1, |         'Magento_ThemeGraphQl' => 1, | ||||||
|         'Magento_Translation' => 1, |         'Magento_Translation' => 1, | ||||||
|         'Magento_AdminAdobeImsTwoFactorAuth' => 1, |         'Magento_AdminAdobeImsTwoFactorAuth' => 0, | ||||||
|         'Magento_GoogleOptimizer' => 1, |         'Magento_GoogleOptimizer' => 1, | ||||||
|         'Magento_Ups' => 1, |         'Magento_Ups' => 1, | ||||||
|         'Magento_SampleData' => 1, |         'Magento_SampleData' => 1, | ||||||
|  |  | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace AdobeStock\Api\Request; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \AdobeStock\Api\Request\License | ||||||
|  |  */ | ||||||
|  | class LicenseFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\AdobeStock\\Api\\Request\\License') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \AdobeStock\Api\Request\License | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,43 @@ | ||||||
|  | <?php | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \DOMDocument | ||||||
|  |  */ | ||||||
|  | class DOMDocumentFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\DOMDocument') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \DOMDocument | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAdobeIms\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Extension class for @see \Magento\AdminAdobeIms\Api\Data\ImsWebapiInterface | ||||||
|  |  */ | ||||||
|  | class ImsWebapiExtension extends \Magento\Framework\Api\AbstractSimpleObject implements ImsWebapiExtensionInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAdobeIms\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdminAdobeIms\Api\Data\ImsWebapiExtension | ||||||
|  |  */ | ||||||
|  | class ImsWebapiExtensionFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdminAdobeIms\\Api\\Data\\ImsWebapiExtension') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdminAdobeIms\Api\Data\ImsWebapiExtension | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAdobeIms\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * ExtensionInterface class for @see \Magento\AdminAdobeIms\Api\Data\ImsWebapiInterface | ||||||
|  |  */ | ||||||
|  | interface ImsWebapiExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAdobeIms\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdminAdobeIms\Api\Data\ImsWebapiInterface | ||||||
|  |  */ | ||||||
|  | class ImsWebapiInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdminAdobeIms\\Api\\Data\\ImsWebapiInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdminAdobeIms\Api\Data\ImsWebapiInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAdobeIms\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdminAdobeIms\Api\Data\ImsWebapiSearchResultsInterface | ||||||
|  |  */ | ||||||
|  | class ImsWebapiSearchResultsInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdminAdobeIms\\Api\\Data\\ImsWebapiSearchResultsInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdminAdobeIms\Api\Data\ImsWebapiSearchResultsInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -14,60 +14,6 @@ class Interceptor extends \Magento\AdminAdobeIms\Console\Command\AdminAdobeImsDi | ||||||
|         parent::__construct($adminImsConfig, $cacheTypeList); |         parent::__construct($adminImsConfig, $cacheTypeList); | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function ignoreValidationErrors() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'ignoreValidationErrors'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('ignoreValidationErrors', func_get_args(), $pluginInfo) : parent::ignoreValidationErrors(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setApplication(?\Symfony\Component\Console\Application $application = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setApplication'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setApplication', func_get_args(), $pluginInfo) : parent::setApplication($application); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHelperSet(\Symfony\Component\Console\Helper\HelperSet $helperSet) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHelperSet'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHelperSet', func_get_args(), $pluginInfo) : parent::setHelperSet($helperSet); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelperSet() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelperSet'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelperSet', func_get_args(), $pluginInfo) : parent::getHelperSet(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getApplication() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getApplication'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getApplication', func_get_args(), $pluginInfo) : parent::getApplication(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isEnabled() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEnabled'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isEnabled', func_get_args(), $pluginInfo) : parent::isEnabled(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |     /** | ||||||
|      * {@inheritdoc} |      * {@inheritdoc} | ||||||
|      */ |      */ | ||||||
|  | @ -76,220 +22,4 @@ class Interceptor extends \Magento\AdminAdobeIms\Console\Command\AdminAdobeImsDi | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'run'); |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'run'); | ||||||
|         return $pluginInfo ? $this->___callPlugins('run', func_get_args(), $pluginInfo) : parent::run($input, $output); |         return $pluginInfo ? $this->___callPlugins('run', func_get_args(), $pluginInfo) : parent::run($input, $output); | ||||||
|     } |     } | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function complete(\Symfony\Component\Console\Completion\CompletionInput $input, \Symfony\Component\Console\Completion\CompletionSuggestions $suggestions) : void |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'complete'); |  | ||||||
|         $pluginInfo ? $this->___callPlugins('complete', func_get_args(), $pluginInfo) : parent::complete($input, $suggestions); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setCode(callable $code) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCode'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setCode', func_get_args(), $pluginInfo) : parent::setCode($code); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function mergeApplicationDefinition(bool $mergeArgs = true) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'mergeApplicationDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('mergeApplicationDefinition', func_get_args(), $pluginInfo) : parent::mergeApplicationDefinition($mergeArgs); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setDefinition($definition) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setDefinition', func_get_args(), $pluginInfo) : parent::setDefinition($definition); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getDefinition() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getDefinition', func_get_args(), $pluginInfo) : parent::getDefinition(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getNativeDefinition() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getNativeDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getNativeDefinition', func_get_args(), $pluginInfo) : parent::getNativeDefinition(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addArgument(string $name, ?int $mode = null, string $description = '', $default = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addArgument'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addArgument', func_get_args(), $pluginInfo) : parent::addArgument($name, $mode, $description, $default); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addOption(string $name, $shortcut = null, ?int $mode = null, string $description = '', $default = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addOption'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addOption', func_get_args(), $pluginInfo) : parent::addOption($name, $shortcut, $mode, $description, $default); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setName(string $name) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setName'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setName', func_get_args(), $pluginInfo) : parent::setName($name); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setProcessTitle(string $title) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setProcessTitle'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setProcessTitle', func_get_args(), $pluginInfo) : parent::setProcessTitle($title); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getName() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getName'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getName', func_get_args(), $pluginInfo) : parent::getName(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHidden(bool $hidden) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHidden'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHidden', func_get_args(), $pluginInfo) : parent::setHidden($hidden); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isHidden() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isHidden'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isHidden', func_get_args(), $pluginInfo) : parent::isHidden(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setDescription(string $description) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDescription'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setDescription', func_get_args(), $pluginInfo) : parent::setDescription($description); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getDescription() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDescription'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getDescription', func_get_args(), $pluginInfo) : parent::getDescription(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHelp(string $help) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHelp', func_get_args(), $pluginInfo) : parent::setHelp($help); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelp() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelp', func_get_args(), $pluginInfo) : parent::getHelp(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getProcessedHelp() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getProcessedHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getProcessedHelp', func_get_args(), $pluginInfo) : parent::getProcessedHelp(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setAliases(iterable $aliases) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setAliases'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setAliases', func_get_args(), $pluginInfo) : parent::setAliases($aliases); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getAliases() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAliases'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getAliases', func_get_args(), $pluginInfo) : parent::getAliases(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getSynopsis(bool $short = false) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSynopsis'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getSynopsis', func_get_args(), $pluginInfo) : parent::getSynopsis($short); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addUsage(string $usage) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addUsage'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addUsage', func_get_args(), $pluginInfo) : parent::addUsage($usage); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getUsages() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUsages'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getUsages', func_get_args(), $pluginInfo) : parent::getUsages(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelper(string $name) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelper'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelper', func_get_args(), $pluginInfo) : parent::getHelper($name); |  | ||||||
|     } |  | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -14,60 +14,6 @@ class Interceptor extends \Magento\AdminAdobeIms\Console\Command\AdminAdobeImsEn | ||||||
|         parent::__construct($adminImsConfig, $adminImsConnection, $imsCommandOptionService, $cacheTypeList, $updateTokensService); |         parent::__construct($adminImsConfig, $adminImsConnection, $imsCommandOptionService, $cacheTypeList, $updateTokensService); | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function ignoreValidationErrors() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'ignoreValidationErrors'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('ignoreValidationErrors', func_get_args(), $pluginInfo) : parent::ignoreValidationErrors(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setApplication(?\Symfony\Component\Console\Application $application = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setApplication'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setApplication', func_get_args(), $pluginInfo) : parent::setApplication($application); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHelperSet(\Symfony\Component\Console\Helper\HelperSet $helperSet) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHelperSet'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHelperSet', func_get_args(), $pluginInfo) : parent::setHelperSet($helperSet); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelperSet() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelperSet'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelperSet', func_get_args(), $pluginInfo) : parent::getHelperSet(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getApplication() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getApplication'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getApplication', func_get_args(), $pluginInfo) : parent::getApplication(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isEnabled() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEnabled'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isEnabled', func_get_args(), $pluginInfo) : parent::isEnabled(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |     /** | ||||||
|      * {@inheritdoc} |      * {@inheritdoc} | ||||||
|      */ |      */ | ||||||
|  | @ -76,220 +22,4 @@ class Interceptor extends \Magento\AdminAdobeIms\Console\Command\AdminAdobeImsEn | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'run'); |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'run'); | ||||||
|         return $pluginInfo ? $this->___callPlugins('run', func_get_args(), $pluginInfo) : parent::run($input, $output); |         return $pluginInfo ? $this->___callPlugins('run', func_get_args(), $pluginInfo) : parent::run($input, $output); | ||||||
|     } |     } | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function complete(\Symfony\Component\Console\Completion\CompletionInput $input, \Symfony\Component\Console\Completion\CompletionSuggestions $suggestions) : void |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'complete'); |  | ||||||
|         $pluginInfo ? $this->___callPlugins('complete', func_get_args(), $pluginInfo) : parent::complete($input, $suggestions); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setCode(callable $code) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCode'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setCode', func_get_args(), $pluginInfo) : parent::setCode($code); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function mergeApplicationDefinition(bool $mergeArgs = true) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'mergeApplicationDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('mergeApplicationDefinition', func_get_args(), $pluginInfo) : parent::mergeApplicationDefinition($mergeArgs); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setDefinition($definition) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setDefinition', func_get_args(), $pluginInfo) : parent::setDefinition($definition); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getDefinition() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getDefinition', func_get_args(), $pluginInfo) : parent::getDefinition(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getNativeDefinition() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getNativeDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getNativeDefinition', func_get_args(), $pluginInfo) : parent::getNativeDefinition(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addArgument(string $name, ?int $mode = null, string $description = '', $default = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addArgument'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addArgument', func_get_args(), $pluginInfo) : parent::addArgument($name, $mode, $description, $default); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addOption(string $name, $shortcut = null, ?int $mode = null, string $description = '', $default = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addOption'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addOption', func_get_args(), $pluginInfo) : parent::addOption($name, $shortcut, $mode, $description, $default); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setName(string $name) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setName'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setName', func_get_args(), $pluginInfo) : parent::setName($name); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setProcessTitle(string $title) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setProcessTitle'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setProcessTitle', func_get_args(), $pluginInfo) : parent::setProcessTitle($title); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getName() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getName'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getName', func_get_args(), $pluginInfo) : parent::getName(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHidden(bool $hidden) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHidden'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHidden', func_get_args(), $pluginInfo) : parent::setHidden($hidden); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isHidden() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isHidden'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isHidden', func_get_args(), $pluginInfo) : parent::isHidden(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setDescription(string $description) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDescription'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setDescription', func_get_args(), $pluginInfo) : parent::setDescription($description); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getDescription() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDescription'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getDescription', func_get_args(), $pluginInfo) : parent::getDescription(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHelp(string $help) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHelp', func_get_args(), $pluginInfo) : parent::setHelp($help); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelp() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelp', func_get_args(), $pluginInfo) : parent::getHelp(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getProcessedHelp() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getProcessedHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getProcessedHelp', func_get_args(), $pluginInfo) : parent::getProcessedHelp(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setAliases(iterable $aliases) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setAliases'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setAliases', func_get_args(), $pluginInfo) : parent::setAliases($aliases); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getAliases() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAliases'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getAliases', func_get_args(), $pluginInfo) : parent::getAliases(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getSynopsis(bool $short = false) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSynopsis'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getSynopsis', func_get_args(), $pluginInfo) : parent::getSynopsis($short); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addUsage(string $usage) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addUsage'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addUsage', func_get_args(), $pluginInfo) : parent::addUsage($usage); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getUsages() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUsages'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getUsages', func_get_args(), $pluginInfo) : parent::getUsages(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelper(string $name) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelper'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelper', func_get_args(), $pluginInfo) : parent::getHelper($name); |  | ||||||
|     } |  | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -14,60 +14,6 @@ class Interceptor extends \Magento\AdminAdobeIms\Console\Command\AdminAdobeImsIn | ||||||
|         parent::__construct($adminImsConfig, $adminImsConnection); |         parent::__construct($adminImsConfig, $adminImsConnection); | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function ignoreValidationErrors() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'ignoreValidationErrors'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('ignoreValidationErrors', func_get_args(), $pluginInfo) : parent::ignoreValidationErrors(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setApplication(?\Symfony\Component\Console\Application $application = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setApplication'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setApplication', func_get_args(), $pluginInfo) : parent::setApplication($application); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHelperSet(\Symfony\Component\Console\Helper\HelperSet $helperSet) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHelperSet'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHelperSet', func_get_args(), $pluginInfo) : parent::setHelperSet($helperSet); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelperSet() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelperSet'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelperSet', func_get_args(), $pluginInfo) : parent::getHelperSet(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getApplication() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getApplication'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getApplication', func_get_args(), $pluginInfo) : parent::getApplication(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isEnabled() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEnabled'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isEnabled', func_get_args(), $pluginInfo) : parent::isEnabled(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |     /** | ||||||
|      * {@inheritdoc} |      * {@inheritdoc} | ||||||
|      */ |      */ | ||||||
|  | @ -76,220 +22,4 @@ class Interceptor extends \Magento\AdminAdobeIms\Console\Command\AdminAdobeImsIn | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'run'); |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'run'); | ||||||
|         return $pluginInfo ? $this->___callPlugins('run', func_get_args(), $pluginInfo) : parent::run($input, $output); |         return $pluginInfo ? $this->___callPlugins('run', func_get_args(), $pluginInfo) : parent::run($input, $output); | ||||||
|     } |     } | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function complete(\Symfony\Component\Console\Completion\CompletionInput $input, \Symfony\Component\Console\Completion\CompletionSuggestions $suggestions) : void |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'complete'); |  | ||||||
|         $pluginInfo ? $this->___callPlugins('complete', func_get_args(), $pluginInfo) : parent::complete($input, $suggestions); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setCode(callable $code) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCode'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setCode', func_get_args(), $pluginInfo) : parent::setCode($code); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function mergeApplicationDefinition(bool $mergeArgs = true) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'mergeApplicationDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('mergeApplicationDefinition', func_get_args(), $pluginInfo) : parent::mergeApplicationDefinition($mergeArgs); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setDefinition($definition) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setDefinition', func_get_args(), $pluginInfo) : parent::setDefinition($definition); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getDefinition() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getDefinition', func_get_args(), $pluginInfo) : parent::getDefinition(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getNativeDefinition() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getNativeDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getNativeDefinition', func_get_args(), $pluginInfo) : parent::getNativeDefinition(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addArgument(string $name, ?int $mode = null, string $description = '', $default = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addArgument'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addArgument', func_get_args(), $pluginInfo) : parent::addArgument($name, $mode, $description, $default); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addOption(string $name, $shortcut = null, ?int $mode = null, string $description = '', $default = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addOption'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addOption', func_get_args(), $pluginInfo) : parent::addOption($name, $shortcut, $mode, $description, $default); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setName(string $name) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setName'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setName', func_get_args(), $pluginInfo) : parent::setName($name); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setProcessTitle(string $title) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setProcessTitle'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setProcessTitle', func_get_args(), $pluginInfo) : parent::setProcessTitle($title); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getName() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getName'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getName', func_get_args(), $pluginInfo) : parent::getName(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHidden(bool $hidden) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHidden'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHidden', func_get_args(), $pluginInfo) : parent::setHidden($hidden); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isHidden() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isHidden'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isHidden', func_get_args(), $pluginInfo) : parent::isHidden(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setDescription(string $description) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDescription'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setDescription', func_get_args(), $pluginInfo) : parent::setDescription($description); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getDescription() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDescription'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getDescription', func_get_args(), $pluginInfo) : parent::getDescription(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHelp(string $help) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHelp', func_get_args(), $pluginInfo) : parent::setHelp($help); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelp() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelp', func_get_args(), $pluginInfo) : parent::getHelp(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getProcessedHelp() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getProcessedHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getProcessedHelp', func_get_args(), $pluginInfo) : parent::getProcessedHelp(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setAliases(iterable $aliases) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setAliases'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setAliases', func_get_args(), $pluginInfo) : parent::setAliases($aliases); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getAliases() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAliases'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getAliases', func_get_args(), $pluginInfo) : parent::getAliases(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getSynopsis(bool $short = false) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSynopsis'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getSynopsis', func_get_args(), $pluginInfo) : parent::getSynopsis($short); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addUsage(string $usage) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addUsage'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addUsage', func_get_args(), $pluginInfo) : parent::addUsage($usage); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getUsages() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUsages'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getUsages', func_get_args(), $pluginInfo) : parent::getUsages(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelper(string $name) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelper'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelper', func_get_args(), $pluginInfo) : parent::getHelper($name); |  | ||||||
|     } |  | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -14,60 +14,6 @@ class Interceptor extends \Magento\AdminAdobeIms\Console\Command\AdminAdobeImsSt | ||||||
|         parent::__construct($adminImsConfig); |         parent::__construct($adminImsConfig); | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function ignoreValidationErrors() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'ignoreValidationErrors'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('ignoreValidationErrors', func_get_args(), $pluginInfo) : parent::ignoreValidationErrors(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setApplication(?\Symfony\Component\Console\Application $application = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setApplication'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setApplication', func_get_args(), $pluginInfo) : parent::setApplication($application); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHelperSet(\Symfony\Component\Console\Helper\HelperSet $helperSet) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHelperSet'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHelperSet', func_get_args(), $pluginInfo) : parent::setHelperSet($helperSet); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelperSet() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelperSet'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelperSet', func_get_args(), $pluginInfo) : parent::getHelperSet(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getApplication() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getApplication'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getApplication', func_get_args(), $pluginInfo) : parent::getApplication(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isEnabled() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEnabled'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isEnabled', func_get_args(), $pluginInfo) : parent::isEnabled(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |     /** | ||||||
|      * {@inheritdoc} |      * {@inheritdoc} | ||||||
|      */ |      */ | ||||||
|  | @ -76,220 +22,4 @@ class Interceptor extends \Magento\AdminAdobeIms\Console\Command\AdminAdobeImsSt | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'run'); |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'run'); | ||||||
|         return $pluginInfo ? $this->___callPlugins('run', func_get_args(), $pluginInfo) : parent::run($input, $output); |         return $pluginInfo ? $this->___callPlugins('run', func_get_args(), $pluginInfo) : parent::run($input, $output); | ||||||
|     } |     } | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function complete(\Symfony\Component\Console\Completion\CompletionInput $input, \Symfony\Component\Console\Completion\CompletionSuggestions $suggestions) : void |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'complete'); |  | ||||||
|         $pluginInfo ? $this->___callPlugins('complete', func_get_args(), $pluginInfo) : parent::complete($input, $suggestions); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setCode(callable $code) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCode'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setCode', func_get_args(), $pluginInfo) : parent::setCode($code); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function mergeApplicationDefinition(bool $mergeArgs = true) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'mergeApplicationDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('mergeApplicationDefinition', func_get_args(), $pluginInfo) : parent::mergeApplicationDefinition($mergeArgs); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setDefinition($definition) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setDefinition', func_get_args(), $pluginInfo) : parent::setDefinition($definition); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getDefinition() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getDefinition', func_get_args(), $pluginInfo) : parent::getDefinition(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getNativeDefinition() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getNativeDefinition'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getNativeDefinition', func_get_args(), $pluginInfo) : parent::getNativeDefinition(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addArgument(string $name, ?int $mode = null, string $description = '', $default = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addArgument'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addArgument', func_get_args(), $pluginInfo) : parent::addArgument($name, $mode, $description, $default); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addOption(string $name, $shortcut = null, ?int $mode = null, string $description = '', $default = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addOption'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addOption', func_get_args(), $pluginInfo) : parent::addOption($name, $shortcut, $mode, $description, $default); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setName(string $name) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setName'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setName', func_get_args(), $pluginInfo) : parent::setName($name); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setProcessTitle(string $title) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setProcessTitle'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setProcessTitle', func_get_args(), $pluginInfo) : parent::setProcessTitle($title); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getName() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getName'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getName', func_get_args(), $pluginInfo) : parent::getName(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHidden(bool $hidden) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHidden'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHidden', func_get_args(), $pluginInfo) : parent::setHidden($hidden); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isHidden() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isHidden'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isHidden', func_get_args(), $pluginInfo) : parent::isHidden(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setDescription(string $description) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDescription'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setDescription', func_get_args(), $pluginInfo) : parent::setDescription($description); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getDescription() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDescription'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getDescription', func_get_args(), $pluginInfo) : parent::getDescription(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHelp(string $help) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHelp', func_get_args(), $pluginInfo) : parent::setHelp($help); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelp() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelp', func_get_args(), $pluginInfo) : parent::getHelp(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getProcessedHelp() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getProcessedHelp'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getProcessedHelp', func_get_args(), $pluginInfo) : parent::getProcessedHelp(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setAliases(iterable $aliases) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setAliases'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setAliases', func_get_args(), $pluginInfo) : parent::setAliases($aliases); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getAliases() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAliases'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getAliases', func_get_args(), $pluginInfo) : parent::getAliases(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getSynopsis(bool $short = false) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSynopsis'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getSynopsis', func_get_args(), $pluginInfo) : parent::getSynopsis($short); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addUsage(string $usage) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addUsage'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addUsage', func_get_args(), $pluginInfo) : parent::addUsage($usage); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getUsages() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUsages'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getUsages', func_get_args(), $pluginInfo) : parent::getUsages(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getHelper(string $name) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getHelper'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getHelper', func_get_args(), $pluginInfo) : parent::getHelper($name); |  | ||||||
|     } |  | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAdobeIms\Controller\Adminhtml\OAuth\ImsCallback; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminAdobeIms\Controller\Adminhtml\OAuth\ImsCallback | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminAdobeIms\Controller\Adminhtml\OAuth\ImsCallback implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdminAdobeIms\Model\ImsConnection $adminImsConnection, \Magento\AdminAdobeIms\Service\ImsConfig $adminImsConfig, \Magento\AdminAdobeIms\Service\ImsOrganizationService $adminOrganizationService, \Magento\AdminAdobeIms\Service\AdminLoginProcessService $adminLoginProcessService, \Magento\AdminAdobeIms\Logger\AdminAdobeImsLogger $logger) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $adminImsConnection, $adminImsConfig, $adminOrganizationService, $adminLoginProcessService, $logger); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 execute() : \Magento\Backend\Model\View\Result\Redirect | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('execute', func_get_args(), $pluginInfo) : parent::execute(); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAdobeIms\Controller\Adminhtml\OAuth\ImsReauthCallback; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminAdobeIms\Controller\Adminhtml\OAuth\ImsReauthCallback | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminAdobeIms\Controller\Adminhtml\OAuth\ImsReauthCallback implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdminAdobeIms\Model\ImsConnection $adminImsConnection, \Magento\AdminAdobeIms\Service\ImsConfig $adminImsConfig, \Magento\AdminAdobeIms\Service\ImsOrganizationService $adminOrganizationService, \Magento\AdminAdobeIms\Service\AdminReauthProcessService $adminReauthProcessService, \Magento\AdminAdobeIms\Logger\AdminAdobeImsLogger $logger) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $adminImsConnection, $adminImsConfig, $adminOrganizationService, $adminReauthProcessService, $logger); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function execute() : \Magento\Framework\Controller\ResultInterface | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('execute', func_get_args(), $pluginInfo) : parent::execute(); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAdobeIms\Model\Auth; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminAdobeIms\Model\Auth | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminAdobeIms\Model\Auth implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Event\ManagerInterface $eventManager, \Magento\Backend\Helper\Data $backendData, \Magento\Backend\Model\Auth\StorageInterface $authStorage, \Magento\Backend\Model\Auth\Credential\StorageInterface $credentialStorage, \Magento\Framework\App\Config\ScopeConfigInterface $coreConfig, \Magento\Framework\Data\Collection\ModelFactory $modelFactory) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($eventManager, $backendData, $authStorage, $credentialStorage, $coreConfig, $modelFactory); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function login($username, $password) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'login'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('login', func_get_args(), $pluginInfo) : parent::login($username, $password); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function logout() | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'logout'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('logout', func_get_args(), $pluginInfo) : parent::logout(); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAdobeIms\Model\ResourceModel\ImsWebapi\Collection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminAdobeIms\Model\ResourceModel\ImsWebapi\Collection | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminAdobeIms\Model\ResourceModel\ImsWebapi\Collection implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAdobeIms\Model\ResourceModel\ImsWebapi; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdminAdobeIms\Model\ResourceModel\ImsWebapi\Collection | ||||||
|  |  */ | ||||||
|  | class CollectionFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdminAdobeIms\\Model\\ResourceModel\\ImsWebapi\\Collection') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdminAdobeIms\Model\ResourceModel\ImsWebapi\Collection | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,61 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAdobeIms\Model\User; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminAdobeIms\Model\User | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminAdobeIms\Model\User implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\User\Helper\Data $userData, \Magento\Backend\App\ConfigInterface $config, \Magento\Framework\Validator\DataObjectFactory $validatorObjectFactory, \Magento\Authorization\Model\RoleFactory $roleFactory, \Magento\Framework\Mail\Template\TransportBuilder $transportBuilder, \Magento\Framework\Encryption\EncryptorInterface $encryptor, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\User\Model\UserValidationRules $validationRules, ?\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, ?\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], ?\Magento\Framework\Serialize\Serializer\Json $serializer = null, ?\Magento\Framework\App\DeploymentConfig $deploymentConfig = null, ?\Magento\User\Model\Spi\NotificatorInterface $notificator = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $registry, $userData, $config, $validatorObjectFactory, $roleFactory, $transportBuilder, $encryptor, $storeManager, $validationRules, $resource, $resourceCollection, $data, $serializer, $deploymentConfig, $notificator); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function beforeSave() | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo) : parent::beforeSave(); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function verifyIdentity($password) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'verifyIdentity'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('verifyIdentity', func_get_args(), $pluginInfo) : parent::verifyIdentity($password); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function performIdentityCheck($passwordString) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'performIdentityCheck'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('performIdentityCheck', func_get_args(), $pluginInfo) : parent::performIdentityCheck($passwordString); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function save() | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('save', func_get_args(), $pluginInfo) : parent::save(); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function delete() | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('delete', func_get_args(), $pluginInfo) : parent::delete(); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAnalytics\Controller\Adminhtml\Config\DisableAdminUsage; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminAnalytics\Controller\Adminhtml\Config\DisableAdminUsage | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminAnalytics\Controller\Adminhtml\Config\DisableAdminUsage implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\App\ProductMetadataInterface $productMetadata, \Magento\AdminAnalytics\Model\ResourceModel\Viewer\Logger $notificationLogger, \Magento\Config\Model\Config\Factory $configFactory) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $productMetadata, $notificationLogger, $configFactory); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAnalytics\Controller\Adminhtml\Config\EnableAdminUsage; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminAnalytics\Controller\Adminhtml\Config\EnableAdminUsage | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminAnalytics\Controller\Adminhtml\Config\EnableAdminUsage implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\App\ProductMetadataInterface $productMetadata, \Magento\AdminAnalytics\Model\ResourceModel\Viewer\Logger $notificationLogger, \Magento\Config\Model\Config\Factory $configFactory) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $productMetadata, $notificationLogger, $configFactory); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminAnalytics\Model\Viewer; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdminAnalytics\Model\Viewer\Log | ||||||
|  |  */ | ||||||
|  | class LogFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdminAnalytics\\Model\\Viewer\\Log') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdminAnalytics\Model\Viewer\Log | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Controller\Adminhtml\Notification\AjaxMarkAsRead; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Controller\Adminhtml\Notification\AjaxMarkAsRead | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Controller\Adminhtml\Notification\AjaxMarkAsRead implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdminNotification\Model\NotificationService $notificationService) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $notificationService); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Controller\Adminhtml\Notification\Index; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Controller\Adminhtml\Notification\Index | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Controller\Adminhtml\Notification\Index implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Controller\Adminhtml\Notification\MarkAsRead; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Controller\Adminhtml\Notification\MarkAsRead | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Controller\Adminhtml\Notification\MarkAsRead implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdminNotification\Model\NotificationService $notificationService) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $notificationService); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Controller\Adminhtml\Notification\MassMarkAsRead; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Controller\Adminhtml\Notification\MassMarkAsRead | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Controller\Adminhtml\Notification\MassMarkAsRead implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdminNotification\Model\InboxFactory $inboxModelFactory) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $inboxModelFactory); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Controller\Adminhtml\Notification\MassRemove; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Controller\Adminhtml\Notification\MassRemove | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Controller\Adminhtml\Notification\MassRemove implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdminNotification\Model\InboxFactory $inboxModelFactory) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $inboxModelFactory); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Controller\Adminhtml\Notification\Remove; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Controller\Adminhtml\Notification\Remove | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Controller\Adminhtml\Notification\Remove implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdminNotification\Model\InboxFactory $inboxModelFactory) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $inboxModelFactory); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Controller\Adminhtml\System\Message\ListAction; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Controller\Adminhtml\System\Message\ListAction | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Controller\Adminhtml\System\Message\ListAction implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\Json\Helper\Data $jsonHelper, \Magento\AdminNotification\Model\ResourceModel\System\Message\Collection $messageCollection) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $jsonHelper, $messageCollection); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Model; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdminNotification\Model\Feed | ||||||
|  |  */ | ||||||
|  | class FeedFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdminNotification\\Model\\Feed') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdminNotification\Model\Feed | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Model; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdminNotification\Model\Inbox | ||||||
|  |  */ | ||||||
|  | class InboxFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdminNotification\\Model\\Inbox') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdminNotification\Model\Inbox | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Model\ResourceModel\Grid\Collection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Model\ResourceModel\Grid\Collection | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Model\ResourceModel\Grid\Collection implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Model\ResourceModel\Inbox\Collection\Critical; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Model\ResourceModel\Inbox\Collection\Critical | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Model\ResourceModel\Inbox\Collection\Critical implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Model\ResourceModel\Inbox\Collection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Model\ResourceModel\Inbox\Collection | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Model\ResourceModel\Inbox\Collection implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Model\ResourceModel\Inbox\Collection\Unread; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Model\ResourceModel\Inbox\Collection\Unread | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Model\ResourceModel\Inbox\Collection\Unread implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Model\ResourceModel\System\Message\Collection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Model\ResourceModel\System\Message\Collection | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Model\ResourceModel\System\Message\Collection implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactory $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, \Magento\Framework\Notification\MessageList $messageList, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $messageList, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Model\ResourceModel\System\Message\Collection\Synchronized; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Model\ResourceModel\System\Message\Collection\Synchronized | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Model\ResourceModel\System\Message\Collection\Synchronized implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactory $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, \Magento\Framework\Notification\MessageList $messageList, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $messageList, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function toArray($arrRequiredFields = []) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('toArray', func_get_args(), $pluginInfo) : parent::toArray($arrRequiredFields); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Model\ResourceModel\System\Message\Collection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdminNotification\Model\ResourceModel\System\Message\Collection\Synchronized | ||||||
|  |  */ | ||||||
|  | class SynchronizedFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdminNotification\\Model\\ResourceModel\\System\\Message\\Collection\\Synchronized') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdminNotification\Model\ResourceModel\System\Message\Collection\Synchronized | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Model\System; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdminNotification\Model\System\Message | ||||||
|  |  */ | ||||||
|  | class MessageFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdminNotification\\Model\\System\\Message') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdminNotification\Model\System\Message | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdminNotification\Ui\Component\DataProvider\DataProvider; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdminNotification\Ui\Component\DataProvider\DataProvider | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdminNotification\Ui\Component\DataProvider\DataProvider implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct($name, $primaryFieldName, $requestFieldName, \Magento\AdminNotification\Model\ResourceModel\System\Message\Collection\SynchronizedFactory $messageCollectionFactory, array $meta = [], array $data = []) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($name, $primaryFieldName, $requestFieldName, $messageCollectionFactory, $meta, $data); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getMeta() | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMeta'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getMeta', func_get_args(), $pluginInfo) : parent::getMeta(); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeIms\Block\Adminhtml\SignIn; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeIms\Block\Adminhtml\SignIn | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeIms\Block\Adminhtml\SignIn implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\Block\Template\Context $context, \Magento\AdobeImsApi\Api\ConfigInterface $config, \Magento\Authorization\Model\UserContextInterface $userContext, \Magento\AdobeImsApi\Api\UserAuthorizedInterface $userAuthorized, \Magento\AdobeImsApi\Api\UserProfileRepositoryInterface $userProfileRepository, \Magento\Framework\Serialize\Serializer\JsonHexTag $json, array $data = []) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $config, $userContext, $userAuthorized, $userProfileRepository, $json, $data); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getComponentJsonConfig() : string | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getComponentJsonConfig'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getComponentJsonConfig', func_get_args(), $pluginInfo) : parent::getComponentJsonConfig(); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeIms\Controller\Adminhtml\OAuth\Callback; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeIms\Controller\Adminhtml\OAuth\Callback | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeIms\Controller\Adminhtml\OAuth\Callback implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdobeImsApi\Api\GetTokenInterface $getToken, \Magento\AdobeImsApi\Api\LogInInterface $login, \Psr\Log\LoggerInterface $logger) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $getToken, $login, $logger); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function execute() : \Magento\Framework\Controller\ResultInterface | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('execute', func_get_args(), $pluginInfo) : parent::execute(); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeIms\Controller\Adminhtml\User\Logout; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeIms\Controller\Adminhtml\User\Logout | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeIms\Controller\Adminhtml\User\Logout implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdobeImsApi\Api\LogOutInterface $logOut) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $logOut); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeIms\Controller\Adminhtml\User\Profile; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeIms\Controller\Adminhtml\User\Profile | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeIms\Controller\Adminhtml\User\Profile implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Authorization\Model\UserContextInterface $userContext, \Magento\AdobeImsApi\Api\UserProfileRepositoryInterface $userProfileRepository, \Psr\Log\LoggerInterface $logger) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $userContext, $userProfileRepository, $logger); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeIms\Model\ResourceModel\UserProfile\Collection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeIms\Model\ResourceModel\UserProfile\Collection | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeIms\Model\ResourceModel\UserProfile\Collection implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeImsApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Extension class for @see \Magento\AdobeImsApi\Api\Data\UserProfileInterface | ||||||
|  |  */ | ||||||
|  | class UserProfileExtension extends \Magento\Framework\Api\AbstractSimpleObject implements UserProfileExtensionInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeImsApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeImsApi\Api\Data\UserProfileExtension | ||||||
|  |  */ | ||||||
|  | class UserProfileExtensionFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeImsApi\\Api\\Data\\UserProfileExtension') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeImsApi\Api\Data\UserProfileExtension | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeImsApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * ExtensionInterface class for @see \Magento\AdobeImsApi\Api\Data\UserProfileInterface | ||||||
|  |  */ | ||||||
|  | interface UserProfileExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeImsApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeImsApi\Api\Data\UserProfileInterface | ||||||
|  |  */ | ||||||
|  | class UserProfileInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeImsApi\\Api\\Data\\UserProfileInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeImsApi\Api\Data\UserProfileInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAdminUi\Controller\Adminhtml\System\Config\TestConnection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockAdminUi\Controller\Adminhtml\System\Config\TestConnection | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockAdminUi\Controller\Adminhtml\System\Config\TestConnection implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdobeStockClientApi\Api\ClientInterface $client, \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory, \Magento\AdobeImsApi\Api\ConfigInterface $config) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $client, $resultJsonFactory, $config); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function execute() : \Magento\Framework\Controller\ResultInterface | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('execute', func_get_args(), $pluginInfo) : parent::execute(); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAsset\Model\ResourceModel\Asset\Collection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockAsset\Model\ResourceModel\Asset\Collection | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockAsset\Model\ResourceModel\Asset\Collection implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAsset\Model\ResourceModel\Asset; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAsset\Model\ResourceModel\Asset\Collection | ||||||
|  |  */ | ||||||
|  | class CollectionFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAsset\\Model\\ResourceModel\\Asset\\Collection') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAsset\Model\ResourceModel\Asset\Collection | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAsset\Model\ResourceModel\Category\Collection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockAsset\Model\ResourceModel\Category\Collection | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockAsset\Model\ResourceModel\Category\Collection implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAsset\Model\ResourceModel\Category; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAsset\Model\ResourceModel\Category\Collection | ||||||
|  |  */ | ||||||
|  | class CollectionFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAsset\\Model\\ResourceModel\\Category\\Collection') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAsset\Model\ResourceModel\Category\Collection | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAsset\Model\ResourceModel\Creator\Collection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockAsset\Model\ResourceModel\Creator\Collection | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockAsset\Model\ResourceModel\Creator\Collection implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, ?\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAsset\Model\ResourceModel\Creator; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAsset\Model\ResourceModel\Creator\Collection | ||||||
|  |  */ | ||||||
|  | class CollectionFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAsset\\Model\\ResourceModel\\Creator\\Collection') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAsset\Model\ResourceModel\Creator\Collection | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Extension class for @see \Magento\AdobeStockAssetApi\Api\Data\AssetInterface | ||||||
|  |  */ | ||||||
|  | class AssetExtension extends \Magento\Framework\Api\AbstractSimpleObject implements AssetExtensionInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAssetApi\Api\Data\AssetExtension | ||||||
|  |  */ | ||||||
|  | class AssetExtensionFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAssetApi\\Api\\Data\\AssetExtension') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAssetApi\Api\Data\AssetExtension | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * ExtensionInterface class for @see \Magento\AdobeStockAssetApi\Api\Data\AssetInterface | ||||||
|  |  */ | ||||||
|  | interface AssetExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAssetApi\Api\Data\AssetInterface | ||||||
|  |  */ | ||||||
|  | class AssetInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAssetApi\\Api\\Data\\AssetInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAssetApi\Api\Data\AssetInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAssetApi\Api\Data\AssetSearchResultsInterface | ||||||
|  |  */ | ||||||
|  | class AssetSearchResultsInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAssetApi\\Api\\Data\\AssetSearchResultsInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAssetApi\Api\Data\AssetSearchResultsInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Extension class for @see \Magento\AdobeStockAssetApi\Api\Data\CategoryInterface | ||||||
|  |  */ | ||||||
|  | class CategoryExtension extends \Magento\Framework\Api\AbstractSimpleObject implements CategoryExtensionInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAssetApi\Api\Data\CategoryExtension | ||||||
|  |  */ | ||||||
|  | class CategoryExtensionFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAssetApi\\Api\\Data\\CategoryExtension') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAssetApi\Api\Data\CategoryExtension | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * ExtensionInterface class for @see \Magento\AdobeStockAssetApi\Api\Data\CategoryInterface | ||||||
|  |  */ | ||||||
|  | interface CategoryExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAssetApi\Api\Data\CategoryInterface | ||||||
|  |  */ | ||||||
|  | class CategoryInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAssetApi\\Api\\Data\\CategoryInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAssetApi\Api\Data\CategoryInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAssetApi\Api\Data\CategorySearchResultsInterface | ||||||
|  |  */ | ||||||
|  | class CategorySearchResultsInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAssetApi\\Api\\Data\\CategorySearchResultsInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAssetApi\Api\Data\CategorySearchResultsInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Extension class for @see \Magento\AdobeStockAssetApi\Api\Data\CreatorInterface | ||||||
|  |  */ | ||||||
|  | class CreatorExtension extends \Magento\Framework\Api\AbstractSimpleObject implements CreatorExtensionInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAssetApi\Api\Data\CreatorExtension | ||||||
|  |  */ | ||||||
|  | class CreatorExtensionFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAssetApi\\Api\\Data\\CreatorExtension') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAssetApi\Api\Data\CreatorExtension | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * ExtensionInterface class for @see \Magento\AdobeStockAssetApi\Api\Data\CreatorInterface | ||||||
|  |  */ | ||||||
|  | interface CreatorExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAssetApi\Api\Data\CreatorInterface | ||||||
|  |  */ | ||||||
|  | class CreatorInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAssetApi\\Api\\Data\\CreatorInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAssetApi\Api\Data\CreatorInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockAssetApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockAssetApi\Api\Data\CreatorSearchResultsInterface | ||||||
|  |  */ | ||||||
|  | class CreatorSearchResultsInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockAssetApi\\Api\\Data\\CreatorSearchResultsInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockAssetApi\Api\Data\CreatorSearchResultsInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockClient\Model; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockClient\Model\ConnectionWrapper | ||||||
|  |  */ | ||||||
|  | class ConnectionWrapperFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockClient\\Model\\ConnectionWrapper') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockClient\Model\ConnectionWrapper | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockClientApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Extension class for @see \Magento\AdobeStockClientApi\Api\Data\LicenseConfirmationInterface | ||||||
|  |  */ | ||||||
|  | class LicenseConfirmationExtension extends \Magento\Framework\Api\AbstractSimpleObject implements LicenseConfirmationExtensionInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockClientApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockClientApi\Api\Data\LicenseConfirmationExtension | ||||||
|  |  */ | ||||||
|  | class LicenseConfirmationExtensionFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockClientApi\\Api\\Data\\LicenseConfirmationExtension') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockClientApi\Api\Data\LicenseConfirmationExtension | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockClientApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * ExtensionInterface class for @see \Magento\AdobeStockClientApi\Api\Data\LicenseConfirmationInterface | ||||||
|  |  */ | ||||||
|  | interface LicenseConfirmationExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockClientApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockClientApi\Api\Data\LicenseConfirmationInterface | ||||||
|  |  */ | ||||||
|  | class LicenseConfirmationInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockClientApi\\Api\\Data\\LicenseConfirmationInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockClientApi\Api\Data\LicenseConfirmationInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockClientApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Extension class for @see \Magento\AdobeStockClientApi\Api\Data\UserQuotaInterface | ||||||
|  |  */ | ||||||
|  | class UserQuotaExtension extends \Magento\Framework\Api\AbstractSimpleObject implements UserQuotaExtensionInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockClientApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockClientApi\Api\Data\UserQuotaExtension | ||||||
|  |  */ | ||||||
|  | class UserQuotaExtensionFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockClientApi\\Api\\Data\\UserQuotaExtension') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockClientApi\Api\Data\UserQuotaExtension | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockClientApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * ExtensionInterface class for @see \Magento\AdobeStockClientApi\Api\Data\UserQuotaInterface | ||||||
|  |  */ | ||||||
|  | interface UserQuotaExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface | ||||||
|  | { | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockClientApi\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdobeStockClientApi\Api\Data\UserQuotaInterface | ||||||
|  |  */ | ||||||
|  | class UserQuotaInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdobeStockClientApi\\Api\\Data\\UserQuotaInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdobeStockClientApi\Api\Data\UserQuotaInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockImageAdminUi\Controller\Adminhtml\Asset\GetMediaGalleryAsset; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\Asset\GetMediaGalleryAsset | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\Asset\GetMediaGalleryAsset implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Psr\Log\LoggerInterface $logger, \Magento\AdobeStockImageAdminUi\Model\Asset\GetMediaGalleryAssetByAdobeId $getAssetByAdobeId) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $logger, $getAssetByAdobeId); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\Confirmation; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\Confirmation | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\Confirmation implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdobeStockClientApi\Api\ClientInterface $client, \Psr\Log\LoggerInterface $logger) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $client, $logger); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\GetList; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\GetList | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\GetList implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Psr\Log\LoggerInterface $logger, \Magento\AdobeStockClientApi\Api\Client\FilesInterface $files) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $logger, $files); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\License; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\License | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\License implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdobeStockClientApi\Api\ClientInterface $client, \Magento\AdobeStockImageApi\Api\SaveLicensedImageInterface $saveLicensedImage, \Psr\Log\LoggerInterface $logger) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $client, $saveLicensedImage, $logger); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\Quota; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\Quota | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\Quota implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdobeStockClientApi\Api\ClientInterface $client, \Psr\Log\LoggerInterface $logger) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $client, $logger); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\SaveLicensed; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\SaveLicensed | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\License\SaveLicensed implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdobeStockImageApi\Api\SaveLicensedImageInterface $saveLicensed, \Psr\Log\LoggerInterface $logger) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $saveLicensed, $logger); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockImageAdminUi\Controller\Adminhtml\Preview\Download; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\Preview\Download | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\Preview\Download implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdobeStockImageApi\Api\SaveImageInterface $save, \Psr\Log\LoggerInterface $logger, \Magento\AdobeStockAssetApi\Api\GetAssetByIdInterface $getAssetById) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $save, $logger, $getAssetById); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdobeStockImageAdminUi\Controller\Adminhtml\Preview\RelatedImages; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\Preview\RelatedImages | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdobeStockImageAdminUi\Controller\Adminhtml\Preview\RelatedImages implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdobeStockImageApi\Api\GetRelatedImagesInterface $getRelatedImages) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $getRelatedImages); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdvancedPricingImportExport\Controller\Adminhtml\Export\GetFilter; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdvancedPricingImportExport\Controller\Adminhtml\Export\GetFilter | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdvancedPricingImportExport\Controller\Adminhtml\Export\GetFilter implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdvancedPricingImportExport\Model\Import\AdvancedPricing; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdvancedPricingImportExport\Model\Import\AdvancedPricing | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdvancedPricingImportExport\Model\Import\AdvancedPricing implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Json\Helper\Data $jsonHelper, \Magento\ImportExport\Helper\Data $importExportData, \Magento\ImportExport\Model\ResourceModel\Import\Data $importData, \Magento\Framework\App\ResourceConnection $resource, \Magento\ImportExport\Model\ResourceModel\Helper $resourceHelper, \Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingErrorAggregatorInterface $errorAggregator, \Magento\Framework\Stdlib\DateTime\DateTime $dateTime, \Magento\CatalogImportExport\Model\Import\Proxy\Product\ResourceModelFactory $resourceFactory, \Magento\Catalog\Model\Product $productModel, \Magento\Catalog\Helper\Data $catalogData, \Magento\CatalogImportExport\Model\Import\Product\StoreResolver $storeResolver, \Magento\CatalogImportExport\Model\Import\Product $importProduct, \Magento\AdvancedPricingImportExport\Model\Import\AdvancedPricing\Validator $validator, \Magento\AdvancedPricingImportExport\Model\Import\AdvancedPricing\Validator\Website $websiteValidator, \Magento\AdvancedPricingImportExport\Model\Import\AdvancedPricing\Validator\TierPrice $tierPriceValidator, ?\Magento\AdvancedPricingImportExport\Model\CurrencyResolver $currencyResolver = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($jsonHelper, $importExportData, $importData, $resource, $resourceHelper, $errorAggregator, $dateTime, $resourceFactory, $productModel, $catalogData, $storeResolver, $importProduct, $validator, $websiteValidator, $tierPriceValidator, $currencyResolver); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function saveAdvancedPricing() | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'saveAdvancedPricing'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('saveAdvancedPricing', func_get_args(), $pluginInfo) : parent::saveAdvancedPricing(); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function deleteAdvancedPricing() | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'deleteAdvancedPricing'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('deleteAdvancedPricing', func_get_args(), $pluginInfo) : parent::deleteAdvancedPricing(); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdvancedSearch\Controller\Adminhtml\Search\System\Config\TestConnection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdvancedSearch\Controller\Adminhtml\Search\System\Config\TestConnection | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdvancedSearch\Controller\Adminhtml\Search\System\Config\TestConnection implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\AdvancedSearch\Model\Client\ClientResolver $clientResolver, \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory, \Magento\Framework\Filter\StripTags $tagFilter) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $clientResolver, $resultJsonFactory, $tagFilter); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdvancedSearch\Model\ResourceModel; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\AdvancedSearch\Model\ResourceModel\Recommendations | ||||||
|  |  */ | ||||||
|  | class RecommendationsFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\AdvancedSearch\\Model\\ResourceModel\\Recommendations') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\AdvancedSearch\Model\ResourceModel\Recommendations | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\AdvancedSearch\Model\ResourceModel\Search\Grid\Collection; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\AdvancedSearch\Model\ResourceModel\Search\Grid\Collection | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\AdvancedSearch\Model\ResourceModel\Search\Grid\Collection implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Data\Collection\EntityFactory $entityFactory, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy, \Magento\Framework\Event\ManagerInterface $eventManager, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\DB\Helper $resourceHelper, \Magento\Framework\Registry $registry, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, $resource = null) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $storeManager, $resourceHelper, $registry, $connection, $resource); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function getCurPage($displacement = 0) | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo) : parent::getCurPage($displacement); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,45 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\Analytics\Api\Data; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Factory class for @see \Magento\Analytics\Api\Data\LinkInterface | ||||||
|  |  */ | ||||||
|  | class LinkInterfaceFactory | ||||||
|  | { | ||||||
|  |     /** | ||||||
|  |      * Object Manager instance | ||||||
|  |      * | ||||||
|  |      * @var \Magento\Framework\ObjectManagerInterface | ||||||
|  |      */ | ||||||
|  |     protected $_objectManager = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Instance name to create | ||||||
|  |      * | ||||||
|  |      * @var string | ||||||
|  |      */ | ||||||
|  |     protected $_instanceName = null; | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Factory constructor | ||||||
|  |      * | ||||||
|  |      * @param \Magento\Framework\ObjectManagerInterface $objectManager | ||||||
|  |      * @param string $instanceName | ||||||
|  |      */ | ||||||
|  |     public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Analytics\\Api\\Data\\LinkInterface') | ||||||
|  |     { | ||||||
|  |         $this->_objectManager = $objectManager; | ||||||
|  |         $this->_instanceName = $instanceName; | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * Create class instance with specified parameters | ||||||
|  |      * | ||||||
|  |      * @param array $data | ||||||
|  |      * @return \Magento\Analytics\Api\Data\LinkInterface | ||||||
|  |      */ | ||||||
|  |     public function create(array $data = []) | ||||||
|  |     { | ||||||
|  |         return $this->_objectManager->create($this->_instanceName, $data); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\Analytics\Controller\Adminhtml\BIEssentials\SignUp; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\Analytics\Controller\Adminhtml\BIEssentials\SignUp | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\Analytics\Controller\Adminhtml\BIEssentials\SignUp implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\App\Config\ScopeConfigInterface $config) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $config); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\Analytics\Controller\Adminhtml\Reports\Show; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\Analytics\Controller\Adminhtml\Reports\Show | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\Analytics\Controller\Adminhtml\Reports\Show implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Analytics\Model\ReportUrlProvider $reportUrlProvider) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $reportUrlProvider); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\Analytics\Controller\Adminhtml\Subscription\Retry; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\Analytics\Controller\Adminhtml\Subscription\Retry | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\Analytics\Controller\Adminhtml\Subscription\Retry implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Analytics\Model\Config\Backend\Enabled\SubscriptionHandler $subscriptionHandler) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $subscriptionHandler); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@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 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); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -23,222 +23,6 @@ class Interceptor extends \Magento\Analytics\Model\Config\Backend\CollectionTime | ||||||
|         return $pluginInfo ? $this->___callPlugins('afterSave', func_get_args(), $pluginInfo) : parent::afterSave(); |         return $pluginInfo ? $this->___callPlugins('afterSave', func_get_args(), $pluginInfo) : parent::afterSave(); | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isValueChanged() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isValueChanged'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isValueChanged', func_get_args(), $pluginInfo) : parent::isValueChanged(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getOldValue() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOldValue'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getOldValue', func_get_args(), $pluginInfo) : parent::getOldValue(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getFieldsetDataValue($key) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFieldsetDataValue'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getFieldsetDataValue', func_get_args(), $pluginInfo) : parent::getFieldsetDataValue($key); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function afterDelete() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo) : parent::afterDelete(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setIdFieldName($name) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIdFieldName'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setIdFieldName', func_get_args(), $pluginInfo) : parent::setIdFieldName($name); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getIdFieldName() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo) : parent::getIdFieldName(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getId() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getId', func_get_args(), $pluginInfo) : parent::getId(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setId($value) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setId'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setId', func_get_args(), $pluginInfo) : parent::setId($value); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isDeleted($isDeleted = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleted'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isDeleted', func_get_args(), $pluginInfo) : parent::isDeleted($isDeleted); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function hasDataChanges() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanges'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('hasDataChanges', func_get_args(), $pluginInfo) : parent::hasDataChanges(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setData($key, $value = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setData', func_get_args(), $pluginInfo) : parent::setData($key, $value); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function unsetData($key = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('unsetData', func_get_args(), $pluginInfo) : parent::unsetData($key); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setDataChanges($value) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataChanges'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setDataChanges', func_get_args(), $pluginInfo) : parent::setDataChanges($value); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getOrigData($key = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOrigData'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getOrigData', func_get_args(), $pluginInfo) : parent::getOrigData($key); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setOrigData($key = null, $data = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrigData'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setOrigData', func_get_args(), $pluginInfo) : parent::setOrigData($key, $data); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function dataHasChangedFor($field) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dataHasChangedFor'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('dataHasChangedFor', func_get_args(), $pluginInfo) : parent::dataHasChangedFor($field); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getResourceName() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceName'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getResourceName', func_get_args(), $pluginInfo) : parent::getResourceName(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getResourceCollection() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceCollection'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getResourceCollection', func_get_args(), $pluginInfo) : parent::getResourceCollection(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getCollection() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCollection'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getCollection', func_get_args(), $pluginInfo) : parent::getCollection(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function load($modelId, $field = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('load', func_get_args(), $pluginInfo) : parent::load($modelId, $field); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function beforeLoad($identifier, $field = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeLoad'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('beforeLoad', func_get_args(), $pluginInfo) : parent::beforeLoad($identifier, $field); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function afterLoad() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo) : parent::afterLoad(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isSaveAllowed() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isSaveAllowed'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isSaveAllowed', func_get_args(), $pluginInfo) : parent::isSaveAllowed(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setHasDataChanges($flag) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHasDataChanges'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setHasDataChanges', func_get_args(), $pluginInfo) : parent::setHasDataChanges($flag); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |     /** | ||||||
|      * {@inheritdoc} |      * {@inheritdoc} | ||||||
|      */ |      */ | ||||||
|  | @ -247,337 +31,4 @@ class Interceptor extends \Magento\Analytics\Model\Config\Backend\CollectionTime | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); | ||||||
|         return $pluginInfo ? $this->___callPlugins('save', func_get_args(), $pluginInfo) : parent::save(); |         return $pluginInfo ? $this->___callPlugins('save', func_get_args(), $pluginInfo) : parent::save(); | ||||||
|     } |     } | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function afterCommitCallback() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterCommitCallback'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('afterCommitCallback', func_get_args(), $pluginInfo) : parent::afterCommitCallback(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isObjectNew($flag = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isObjectNew'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isObjectNew', func_get_args(), $pluginInfo) : parent::isObjectNew($flag); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function beforeSave() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo) : parent::beforeSave(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function validateBeforeSave() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateBeforeSave'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('validateBeforeSave', func_get_args(), $pluginInfo) : parent::validateBeforeSave(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getCacheTags() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCacheTags'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getCacheTags', func_get_args(), $pluginInfo) : parent::getCacheTags(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function cleanModelCache() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanModelCache'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('cleanModelCache', func_get_args(), $pluginInfo) : parent::cleanModelCache(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function delete() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('delete', func_get_args(), $pluginInfo) : parent::delete(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function beforeDelete() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo) : parent::beforeDelete(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function afterDeleteCommit() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDeleteCommit'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('afterDeleteCommit', func_get_args(), $pluginInfo) : parent::afterDeleteCommit(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getResource() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getResource', func_get_args(), $pluginInfo) : parent::getResource(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getEntityId() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityId'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getEntityId', func_get_args(), $pluginInfo) : parent::getEntityId(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setEntityId($entityId) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityId'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setEntityId', func_get_args(), $pluginInfo) : parent::setEntityId($entityId); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function clearInstance() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clearInstance'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('clearInstance', func_get_args(), $pluginInfo) : parent::clearInstance(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getStoredData() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoredData'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getStoredData', func_get_args(), $pluginInfo) : parent::getStoredData(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getEventPrefix() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEventPrefix'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getEventPrefix', func_get_args(), $pluginInfo) : parent::getEventPrefix(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function addData(array $arr) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('addData', func_get_args(), $pluginInfo) : parent::addData($arr); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getData($key = '', $index = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getData', func_get_args(), $pluginInfo) : parent::getData($key, $index); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getDataByPath($path) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo) : parent::getDataByPath($path); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getDataByKey($key) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo) : parent::getDataByKey($key); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function setDataUsingMethod($key, $args = []) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo) : parent::setDataUsingMethod($key, $args); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function getDataUsingMethod($key, $args = null) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo) : parent::getDataUsingMethod($key, $args); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function hasData($key = '') |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('hasData', func_get_args(), $pluginInfo) : parent::hasData($key); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function toArray(array $keys = []) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('toArray', func_get_args(), $pluginInfo) : parent::toArray($keys); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function convertToArray(array $keys = []) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo) : parent::convertToArray($keys); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('toXml', func_get_args(), $pluginInfo) : parent::toXml($keys, $rootName, $addOpenTag, $addCdata); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo) : parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function toJson(array $keys = []) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('toJson', func_get_args(), $pluginInfo) : parent::toJson($keys); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function convertToJson(array $keys = []) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo) : parent::convertToJson($keys); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function toString($format = '') |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('toString', func_get_args(), $pluginInfo) : parent::toString($format); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function __call($method, $args) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('__call', func_get_args(), $pluginInfo) : parent::__call($method, $args); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function isEmpty() |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo) : parent::isEmpty(); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('serialize', func_get_args(), $pluginInfo) : parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function debug($data = null, &$objects = []) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('debug', func_get_args(), $pluginInfo) : parent::debug($data, $objects); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function offsetSet($offset, $value) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo) : parent::offsetSet($offset, $value); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function offsetExists($offset) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo) : parent::offsetExists($offset); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function offsetUnset($offset) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo) : parent::offsetUnset($offset); |  | ||||||
|     } |  | ||||||
| 
 |  | ||||||
|     /** |  | ||||||
|      * {@inheritdoc} |  | ||||||
|      */ |  | ||||||
|     public function offsetGet($offset) |  | ||||||
|     { |  | ||||||
|         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); |  | ||||||
|         return $pluginInfo ? $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo) : parent::offsetGet($offset); |  | ||||||
|     } |  | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\Analytics\Model\Config\Backend\Enabled; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\Analytics\Model\Config\Backend\Enabled | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\Analytics\Model\Config\Backend\Enabled implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\Framework\App\Config\ScopeConfigInterface $config, \Magento\Framework\App\Cache\TypeListInterface $cacheTypeList, \Magento\Analytics\Model\Config\Backend\Enabled\SubscriptionHandler $subscriptionHandler, ?\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, ?\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = []) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $registry, $config, $cacheTypeList, $subscriptionHandler, $resource, $resourceCollection, $data); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function afterSave() | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('afterSave', func_get_args(), $pluginInfo) : parent::afterSave(); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function save() | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('save', func_get_args(), $pluginInfo) : parent::save(); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,34 @@ | ||||||
|  | <?php | ||||||
|  | namespace Magento\Analytics\Model\Config\Backend\Vertical; | ||||||
|  | 
 | ||||||
|  | /** | ||||||
|  |  * Interceptor class for @see \Magento\Analytics\Model\Config\Backend\Vertical | ||||||
|  |  */ | ||||||
|  | class Interceptor extends \Magento\Analytics\Model\Config\Backend\Vertical implements \Magento\Framework\Interception\InterceptorInterface | ||||||
|  | { | ||||||
|  |     use \Magento\Framework\Interception\Interceptor; | ||||||
|  | 
 | ||||||
|  |     public function __construct(\Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\Framework\App\Config\ScopeConfigInterface $config, \Magento\Framework\App\Cache\TypeListInterface $cacheTypeList, ?\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, ?\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = []) | ||||||
|  |     { | ||||||
|  |         $this->___init(); | ||||||
|  |         parent::__construct($context, $registry, $config, $cacheTypeList, $resource, $resourceCollection, $data); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function afterSave() | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('afterSave', func_get_args(), $pluginInfo) : parent::afterSave(); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * {@inheritdoc} | ||||||
|  |      */ | ||||||
|  |     public function save() | ||||||
|  |     { | ||||||
|  |         $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); | ||||||
|  |         return $pluginInfo ? $this->___callPlugins('save', func_get_args(), $pluginInfo) : parent::save(); | ||||||
|  |     } | ||||||
|  | } | ||||||
Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
		Reference in New Issue