Kernel : Linux vmw02p.internet-indee.net 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Tue Nov 16 14:42:35 UTC 2021 x86_64
Disable function : NONE
Safe mode : OFF
Host : firofichi.it | Server ip : 5.196.164.15 | Your ip : 3.14.130.230 | Time @ Server : 19 Oct 2024 08:22:23
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/massimoborgia/test/it/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/webmaster/massimoborgia/test/it/generated.tgz

generated/0000775000175100017510000000000013545554465013604 5ustar webmasterwebmastergenerated/.htaccess0000664000175100017510000000017613545553215015376 0ustar webmasterwebmaster<IfVersion < 2.4> order allow,deny deny from all </IfVersion> <IfVersion >= 2.4> Require all denied </IfVersion> generated/code/0000775000006000000600000000000013545561736013155 5ustar apacheapachegenerated/code/Magento/0000775000175100017510000000000013545561747016111 5ustar webmasterwebmastergenerated/code/Magento/Directory/0000775000175100017510000000000013545561747020055 5ustar webmasterwebmastergenerated/code/Magento/Directory/Helper/0000775000175100017510000000000013545561714021266 5ustar webmasterwebmastergenerated/code/Magento/Directory/Helper/Data/0000775000175100017510000000000013545561714022137 5ustar webmasterwebmastergenerated/code/Magento/Directory/Helper/Data/Proxy.php0000664000175100017510000001072613545561714023777 0ustar webmasterwebmaster<?php namespace Magento\Directory\Helper\Data; /** * Proxy class for @see \Magento\Directory\Helper\Data */ class Proxy extends \Magento\Directory\Helper\Data implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Directory\Helper\Data */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Directory\\Helper\\Data', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Directory\Helper\Data */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function getRegionCollection() { return $this->_getSubject()->getRegionCollection(); } /** * {@inheritdoc} */ public function getCountryCollection($store = null) { return $this->_getSubject()->getCountryCollection($store); } /** * {@inheritdoc} */ public function getRegionJson() { return $this->_getSubject()->getRegionJson(); } /** * {@inheritdoc} */ public function currencyConvert($amount, $from, $to = null) { return $this->_getSubject()->currencyConvert($amount, $from, $to); } /** * {@inheritdoc} */ public function getCountriesWithOptionalZip($asJson = false) { return $this->_getSubject()->getCountriesWithOptionalZip($asJson); } /** * {@inheritdoc} */ public function isZipCodeOptional($countryCode) { return $this->_getSubject()->isZipCodeOptional($countryCode); } /** * {@inheritdoc} */ public function getCountriesWithStatesRequired($asJson = false) { return $this->_getSubject()->getCountriesWithStatesRequired($asJson); } /** * {@inheritdoc} */ public function isShowNonRequiredState() { return $this->_getSubject()->isShowNonRequiredState(); } /** * {@inheritdoc} */ public function isRegionRequired($countryId) { return $this->_getSubject()->isRegionRequired($countryId); } /** * {@inheritdoc} */ public function getBaseCurrencyCode() { return $this->_getSubject()->getBaseCurrencyCode(); } /** * {@inheritdoc} */ public function getDefaultCountry($store = null) { return $this->_getSubject()->getDefaultCountry($store); } /** * {@inheritdoc} */ public function getRegionData() { return $this->_getSubject()->getRegionData(); } /** * {@inheritdoc} */ public function getTopCountryCodes() { return $this->_getSubject()->getTopCountryCodes(); } /** * {@inheritdoc} */ public function getWeightUnit() { return $this->_getSubject()->getWeightUnit(); } /** * {@inheritdoc} */ public function isModuleOutputEnabled($moduleName = null) { return $this->_getSubject()->isModuleOutputEnabled($moduleName); } } generated/code/Magento/Directory/Model/0000775000175100017510000000000013545561747021115 5ustar webmasterwebmastergenerated/code/Magento/Directory/Model/CurrencyFactory.php0000664000175100017510000000210113545561747024742 0ustar webmasterwebmaster<?php namespace Magento\Directory\Model; /** * Factory class for @see \Magento\Directory\Model\Currency */ class CurrencyFactory { /** * 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\\Directory\\Model\\Currency') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Directory\Model\Currency */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Directory/Model/CountryFactory.php0000664000175100017510000000207513545561747024625 0ustar webmasterwebmaster<?php namespace Magento\Directory\Model; /** * Factory class for @see \Magento\Directory\Model\Country */ class CountryFactory { /** * 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\\Directory\\Model\\Country') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Directory\Model\Country */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/0000775000175100017510000000000013545561736020044 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/0000775000175100017510000000000013545561747020566 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Config/0000775000175100017510000000000013545561736021771 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Config/InitialConfigSource/0000775000175100017510000000000013545561714025665 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Config/InitialConfigSource/Proxy.php0000664000175100017510000000445213545561714027524 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\Config\InitialConfigSource; /** * Proxy class for @see \Magento\Framework\App\Config\InitialConfigSource */ class Proxy extends \Magento\Framework\App\Config\InitialConfigSource implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\App\Config\InitialConfigSource */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\App\\Config\\InitialConfigSource', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\App\Config\InitialConfigSource */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function get($path = '') { return $this->_getSubject()->get($path); } } generated/code/Magento/Framework/App/Config/ConfigSourceAggregated/0000775000175100017510000000000013545561736026332 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Config/ConfigSourceAggregated/Proxy.php0000664000175100017510000000447413545561736030175 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\Config\ConfigSourceAggregated; /** * Proxy class for @see \Magento\Framework\App\Config\ConfigSourceAggregated */ class Proxy extends \Magento\Framework\App\Config\ConfigSourceAggregated implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\App\Config\ConfigSourceAggregated */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\App\\Config\\ConfigSourceAggregated', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\App\Config\ConfigSourceAggregated */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function get($path = '') { return $this->_getSubject()->get($path); } } generated/code/Magento/Framework/App/Config/PostProcessorComposite/0000775000175100017510000000000013545561736026501 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Config/PostProcessorComposite/Proxy.php0000664000175100017510000000451113545561736030334 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\Config\PostProcessorComposite; /** * Proxy class for @see \Magento\Framework\App\Config\PostProcessorComposite */ class Proxy extends \Magento\Framework\App\Config\PostProcessorComposite implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\App\Config\PostProcessorComposite */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\App\\Config\\PostProcessorComposite', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\App\Config\PostProcessorComposite */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function process(array $config) { return $this->_getSubject()->process($config); } } generated/code/Magento/Framework/App/Config/Value/0000775000175100017510000000000013545561736023045 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Config/Value/Interceptor.php0000664000175100017510000005724213545561736026066 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\Config\Value; /** * Interceptor class for @see \Magento\Framework\App\Config\Value */ class Interceptor extends \Magento\Framework\App\Config\Value 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 isValueChanged() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isValueChanged'); if (!$pluginInfo) { return parent::isValueChanged(); } else { return $this->___callPlugins('isValueChanged', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOldValue() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOldValue'); if (!$pluginInfo) { return parent::getOldValue(); } else { return $this->___callPlugins('getOldValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFieldsetDataValue($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFieldsetDataValue'); if (!$pluginInfo) { return parent::getFieldsetDataValue($key); } else { return $this->___callPlugins('getFieldsetDataValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave(); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete(); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIdFieldName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIdFieldName'); if (!$pluginInfo) { return parent::setIdFieldName($name); } else { return $this->___callPlugins('setIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId'); if (!$pluginInfo) { return parent::getId(); } else { return $this->___callPlugins('getId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setId($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setId'); if (!$pluginInfo) { return parent::setId($value); } else { return $this->___callPlugins('setId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDeleted($isDeleted = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleted'); if (!$pluginInfo) { return parent::isDeleted($isDeleted); } else { return $this->___callPlugins('isDeleted', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanges() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanges'); if (!$pluginInfo) { return parent::hasDataChanges(); } else { return $this->___callPlugins('hasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setData($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); if (!$pluginInfo) { return parent::setData($key, $value); } else { return $this->___callPlugins('setData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); if (!$pluginInfo) { return parent::unsetData($key); } else { return $this->___callPlugins('unsetData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataChanges($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataChanges'); if (!$pluginInfo) { return parent::setDataChanges($value); } else { return $this->___callPlugins('setDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOrigData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOrigData'); if (!$pluginInfo) { return parent::getOrigData($key); } else { return $this->___callPlugins('getOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setOrigData($key = null, $data = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrigData'); if (!$pluginInfo) { return parent::setOrigData($key, $data); } else { return $this->___callPlugins('setOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function dataHasChangedFor($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dataHasChangedFor'); if (!$pluginInfo) { return parent::dataHasChangedFor($field); } else { return $this->___callPlugins('dataHasChangedFor', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceName'); if (!$pluginInfo) { return parent::getResourceName(); } else { return $this->___callPlugins('getResourceName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceCollection'); if (!$pluginInfo) { return parent::getResourceCollection(); } else { return $this->___callPlugins('getResourceCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCollection'); if (!$pluginInfo) { return parent::getCollection(); } else { return $this->___callPlugins('getCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($modelId, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($modelId, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeLoad($identifier, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeLoad'); if (!$pluginInfo) { return parent::beforeLoad($identifier, $field); } else { return $this->___callPlugins('beforeLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad(); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isSaveAllowed() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isSaveAllowed'); if (!$pluginInfo) { return parent::isSaveAllowed(); } else { return $this->___callPlugins('isSaveAllowed', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setHasDataChanges($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHasDataChanges'); if (!$pluginInfo) { return parent::setHasDataChanges($flag); } else { return $this->___callPlugins('setHasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save(); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterCommitCallback() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterCommitCallback'); if (!$pluginInfo) { return parent::afterCommitCallback(); } else { return $this->___callPlugins('afterCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isObjectNew($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isObjectNew'); if (!$pluginInfo) { return parent::isObjectNew($flag); } else { return $this->___callPlugins('isObjectNew', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave(); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validateBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateBeforeSave'); if (!$pluginInfo) { return parent::validateBeforeSave(); } else { return $this->___callPlugins('validateBeforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCacheTags() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCacheTags'); if (!$pluginInfo) { return parent::getCacheTags(); } else { return $this->___callPlugins('getCacheTags', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function cleanModelCache() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanModelCache'); if (!$pluginInfo) { return parent::cleanModelCache(); } else { return $this->___callPlugins('cleanModelCache', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete(); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete(); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDeleteCommit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDeleteCommit'); if (!$pluginInfo) { return parent::afterDeleteCommit(); } else { return $this->___callPlugins('afterDeleteCommit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResource() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); if (!$pluginInfo) { return parent::getResource(); } else { return $this->___callPlugins('getResource', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityId'); if (!$pluginInfo) { return parent::getEntityId(); } else { return $this->___callPlugins('getEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntityId($entityId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityId'); if (!$pluginInfo) { return parent::setEntityId($entityId); } else { return $this->___callPlugins('setEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clearInstance() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clearInstance'); if (!$pluginInfo) { return parent::clearInstance(); } else { return $this->___callPlugins('clearInstance', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoredData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoredData'); if (!$pluginInfo) { return parent::getStoredData(); } else { return $this->___callPlugins('getStoredData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEventPrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEventPrefix'); if (!$pluginInfo) { return parent::getEventPrefix(); } else { return $this->___callPlugins('getEventPrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addData(array $arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); if (!$pluginInfo) { return parent::addData($arr); } else { return $this->___callPlugins('addData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData($key = '', $index = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData($key, $index); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByPath($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); if (!$pluginInfo) { return parent::getDataByPath($path); } else { return $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); if (!$pluginInfo) { return parent::getDataByKey($key); } else { return $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataUsingMethod($key, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); if (!$pluginInfo) { return parent::setDataUsingMethod($key, $args); } else { return $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataUsingMethod($key, $args = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); if (!$pluginInfo) { return parent::getDataUsingMethod($key, $args); } else { return $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasData($key = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); if (!$pluginInfo) { return parent::hasData($key); } else { return $this->___callPlugins('hasData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray($keys); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); if (!$pluginInfo) { return parent::convertToArray($keys); } else { return $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); if (!$pluginInfo) { return parent::toXml($keys, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('toXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); if (!$pluginInfo) { return parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); if (!$pluginInfo) { return parent::toJson($keys); } else { return $this->___callPlugins('toJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); if (!$pluginInfo) { return parent::convertToJson($keys); } else { return $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toString($format = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); if (!$pluginInfo) { return parent::toString($format); } else { return $this->___callPlugins('toString', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function __call($method, $args) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); if (!$pluginInfo) { return parent::__call($method, $args); } else { return $this->___callPlugins('__call', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isEmpty() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); if (!$pluginInfo) { return parent::isEmpty(); } else { return $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); if (!$pluginInfo) { return parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); } else { return $this->___callPlugins('serialize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function debug($data = null, &$objects = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); if (!$pluginInfo) { return parent::debug($data, $objects); } else { return $this->___callPlugins('debug', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetSet($offset, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); if (!$pluginInfo) { return parent::offsetSet($offset, $value); } else { return $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetExists($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); if (!$pluginInfo) { return parent::offsetExists($offset); } else { return $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetUnset($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); if (!$pluginInfo) { return parent::offsetUnset($offset); } else { return $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetGet($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); if (!$pluginInfo) { return parent::offsetGet($offset); } else { return $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/App/Config/FileResolver/0000775000175100017510000000000013545561736024372 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Config/FileResolver/Proxy.php0000664000175100017510000000442313545561736026227 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\Config\FileResolver; /** * Proxy class for @see \Magento\Framework\App\Config\FileResolver */ class Proxy extends \Magento\Framework\App\Config\FileResolver implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\App\Config\FileResolver */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\App\\Config\\FileResolver', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\App\Config\FileResolver */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function get($filename, $scope) { return $this->_getSubject()->get($filename, $scope); } } generated/code/Magento/Framework/App/Config/Initial/0000775000175100017510000000000013545561747023364 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Config/Initial/Converter/0000775000175100017510000000000013545561736025331 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Config/Initial/Converter/Interceptor.php0000664000175100017510000000147413545561736030346 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\Config\Initial\Converter; /** * Interceptor class for @see \Magento\Framework\App\Config\Initial\Converter */ class Interceptor extends \Magento\Framework\App\Config\Initial\Converter implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(array $nodeMap = []) { $this->___init(); parent::__construct($nodeMap); } /** * {@inheritdoc} */ public function convert($source) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convert'); if (!$pluginInfo) { return parent::convert($source); } else { return $this->___callPlugins('convert', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/App/Config/Initial/Reader/0000775000175100017510000000000013545561747024566 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Config/Initial/Reader/Proxy.php0000664000175100017510000000440013545561747026416 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\Config\Initial\Reader; /** * Proxy class for @see \Magento\Framework\App\Config\Initial\Reader */ class Proxy extends \Magento\Framework\App\Config\Initial\Reader implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\App\Config\Initial\Reader */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\App\\Config\\Initial\\Reader', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\App\Config\Initial\Reader */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function read() { return $this->_getSubject()->read(); } } generated/code/Magento/Framework/App/PageCache/0000775000175100017510000000000013545561731022357 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/PageCache/Cache/0000775000175100017510000000000013545561731023362 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/PageCache/Cache/Interceptor.php0000664000175100017510000000437413545561731026401 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\PageCache\Cache; /** * Interceptor class for @see \Magento\Framework\App\PageCache\Cache */ class Interceptor extends \Magento\Framework\App\PageCache\Cache implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\App\Cache\Frontend\Pool $frontendPool) { $this->___init(); parent::__construct($frontendPool); } /** * {@inheritdoc} */ public function getFrontend() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFrontend'); if (!$pluginInfo) { return parent::getFrontend(); } else { return $this->___callPlugins('getFrontend', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($identifier) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($identifier); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save($data, $identifier, $tags = [], $lifeTime = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($data, $identifier, $tags, $lifeTime); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function remove($identifier) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'remove'); if (!$pluginInfo) { return parent::remove($identifier); } else { return $this->___callPlugins('remove', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clean($tags = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clean'); if (!$pluginInfo) { return parent::clean($tags); } else { return $this->___callPlugins('clean', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/App/ResourceConnection/0000775000175100017510000000000013545561735024372 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/ResourceConnection/Proxy.php0000664000175100017510000001047013545561735026226 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\ResourceConnection; /** * Proxy class for @see \Magento\Framework\App\ResourceConnection */ class Proxy extends \Magento\Framework\App\ResourceConnection implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\App\ResourceConnection */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\App\\ResourceConnection', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\App\ResourceConnection */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function getConnection($resourceName = 'default') { return $this->_getSubject()->getConnection($resourceName); } /** * {@inheritdoc} */ public function closeConnection($resourceName = 'default') { return $this->_getSubject()->closeConnection($resourceName); } /** * {@inheritdoc} */ public function getConnectionByName($connectionName) { return $this->_getSubject()->getConnectionByName($connectionName); } /** * {@inheritdoc} */ public function getTableName($modelEntity, $connectionName = 'default') { return $this->_getSubject()->getTableName($modelEntity, $connectionName); } /** * {@inheritdoc} */ public function getTablePlaceholder($tableName) { return $this->_getSubject()->getTablePlaceholder($tableName); } /** * {@inheritdoc} */ public function getTriggerName($tableName, $time, $event) { return $this->_getSubject()->getTriggerName($tableName, $time, $event); } /** * {@inheritdoc} */ public function setMappedTableName($tableName, $mappedName) { return $this->_getSubject()->setMappedTableName($tableName, $mappedName); } /** * {@inheritdoc} */ public function getMappedTableName($tableName) { return $this->_getSubject()->getMappedTableName($tableName); } /** * {@inheritdoc} */ public function getIdxName($tableName, $fields, $indexType = 'index') { return $this->_getSubject()->getIdxName($tableName, $fields, $indexType); } /** * {@inheritdoc} */ public function getFkName($priTableName, $priColumnName, $refTableName, $refColumnName) { return $this->_getSubject()->getFkName($priTableName, $priColumnName, $refTableName, $refColumnName); } /** * {@inheritdoc} */ public function getSchemaName($resourceName) { return $this->_getSubject()->getSchemaName($resourceName); } /** * {@inheritdoc} */ public function getTablePrefix() { return $this->_getSubject()->getTablePrefix(); } } generated/code/Magento/Framework/App/ResourceConnection/Interceptor.php0000664000175100017510000001305713545561735027407 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\ResourceConnection; /** * Interceptor class for @see \Magento\Framework\App\ResourceConnection */ class Interceptor extends \Magento\Framework\App\ResourceConnection implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\App\ResourceConnection\ConfigInterface $resourceConfig, \Magento\Framework\Model\ResourceModel\Type\Db\ConnectionFactoryInterface $connectionFactory, \Magento\Framework\App\DeploymentConfig $deploymentConfig, $tablePrefix = '') { $this->___init(); parent::__construct($resourceConfig, $connectionFactory, $deploymentConfig, $tablePrefix); } /** * {@inheritdoc} */ public function getConnection($resourceName = 'default') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConnection'); if (!$pluginInfo) { return parent::getConnection($resourceName); } else { return $this->___callPlugins('getConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function closeConnection($resourceName = 'default') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'closeConnection'); if (!$pluginInfo) { return parent::closeConnection($resourceName); } else { return $this->___callPlugins('closeConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConnectionByName($connectionName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConnectionByName'); if (!$pluginInfo) { return parent::getConnectionByName($connectionName); } else { return $this->___callPlugins('getConnectionByName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTableName($modelEntity, $connectionName = 'default') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTableName'); if (!$pluginInfo) { return parent::getTableName($modelEntity, $connectionName); } else { return $this->___callPlugins('getTableName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTablePlaceholder($tableName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTablePlaceholder'); if (!$pluginInfo) { return parent::getTablePlaceholder($tableName); } else { return $this->___callPlugins('getTablePlaceholder', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTriggerName($tableName, $time, $event) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTriggerName'); if (!$pluginInfo) { return parent::getTriggerName($tableName, $time, $event); } else { return $this->___callPlugins('getTriggerName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setMappedTableName($tableName, $mappedName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setMappedTableName'); if (!$pluginInfo) { return parent::setMappedTableName($tableName, $mappedName); } else { return $this->___callPlugins('setMappedTableName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getMappedTableName($tableName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMappedTableName'); if (!$pluginInfo) { return parent::getMappedTableName($tableName); } else { return $this->___callPlugins('getMappedTableName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdxName($tableName, $fields, $indexType = 'index') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdxName'); if (!$pluginInfo) { return parent::getIdxName($tableName, $fields, $indexType); } else { return $this->___callPlugins('getIdxName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFkName($priTableName, $priColumnName, $refTableName, $refColumnName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFkName'); if (!$pluginInfo) { return parent::getFkName($priTableName, $priColumnName, $refTableName, $refColumnName); } else { return $this->___callPlugins('getFkName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSchemaName($resourceName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSchemaName'); if (!$pluginInfo) { return parent::getSchemaName($resourceName); } else { return $this->___callPlugins('getSchemaName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTablePrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTablePrefix'); if (!$pluginInfo) { return parent::getTablePrefix(); } else { return $this->___callPlugins('getTablePrefix', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/App/ResourceConnection/Config/0000775000175100017510000000000013545561736025600 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/ResourceConnection/Config/Proxy.php0000664000175100017510000000537313545561735027441 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\ResourceConnection\Config; /** * Proxy class for @see \Magento\Framework\App\ResourceConnection\Config */ class Proxy extends \Magento\Framework\App\ResourceConnection\Config implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\App\ResourceConnection\Config */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\App\\ResourceConnection\\Config', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\App\ResourceConnection\Config */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function getConnectionName($resourceName) { return $this->_getSubject()->getConnectionName($resourceName); } /** * {@inheritdoc} */ public function get($path = null, $default = null) { return $this->_getSubject()->get($path, $default); } /** * {@inheritdoc} */ public function merge(array $config) { return $this->_getSubject()->merge($config); } /** * {@inheritdoc} */ public function reset() { return $this->_getSubject()->reset(); } } generated/code/Magento/Framework/App/ResourceConnection/Config/Reader/0000775000175100017510000000000013545561736027002 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/ResourceConnection/Config/Reader/Proxy.php0000664000175100017510000000452513545561736030642 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\ResourceConnection\Config\Reader; /** * Proxy class for @see \Magento\Framework\App\ResourceConnection\Config\Reader */ class Proxy extends \Magento\Framework\App\ResourceConnection\Config\Reader implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\App\ResourceConnection\Config\Reader */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\App\\ResourceConnection\\Config\\Reader', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\App\ResourceConnection\Config\Reader */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function read($scope = null) { return $this->_getSubject()->read($scope); } } generated/code/Magento/Framework/App/MaintenanceMode/0000775000175100017510000000000013545561735023612 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/MaintenanceMode/Interceptor.php0000664000175100017510000000355413545561735026630 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\MaintenanceMode; /** * Interceptor class for @see \Magento\Framework\App\MaintenanceMode */ class Interceptor extends \Magento\Framework\App\MaintenanceMode implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Filesystem $filesystem) { $this->___init(); parent::__construct($filesystem); } /** * {@inheritdoc} */ public function isOn($remoteAddr = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isOn'); if (!$pluginInfo) { return parent::isOn($remoteAddr); } else { return $this->___callPlugins('isOn', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function set($isOn) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'set'); if (!$pluginInfo) { return parent::set($isOn); } else { return $this->___callPlugins('set', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setAddresses($addresses) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setAddresses'); if (!$pluginInfo) { return parent::setAddresses($addresses); } else { return $this->___callPlugins('setAddresses', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAddressInfo() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAddressInfo'); if (!$pluginInfo) { return parent::getAddressInfo(); } else { return $this->___callPlugins('getAddressInfo', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/App/State/0000775000175100017510000000000013545561735021643 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/State/Interceptor.php0000664000175100017510000000526013545561735024655 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\State; /** * Interceptor class for @see \Magento\Framework\App\State */ class Interceptor extends \Magento\Framework\App\State implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Config\ScopeInterface $configScope, $mode = 'default') { $this->___init(); parent::__construct($configScope, $mode); } /** * {@inheritdoc} */ public function getMode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMode'); if (!$pluginInfo) { return parent::getMode(); } else { return $this->___callPlugins('getMode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIsDownloader($flag = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIsDownloader'); if (!$pluginInfo) { return parent::setIsDownloader($flag); } else { return $this->___callPlugins('setIsDownloader', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setAreaCode($code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setAreaCode'); if (!$pluginInfo) { return parent::setAreaCode($code); } else { return $this->___callPlugins('setAreaCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAreaCode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAreaCode'); if (!$pluginInfo) { return parent::getAreaCode(); } else { return $this->___callPlugins('getAreaCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isAreaCodeEmulated() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isAreaCodeEmulated'); if (!$pluginInfo) { return parent::isAreaCodeEmulated(); } else { return $this->___callPlugins('isAreaCodeEmulated', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function emulateAreaCode($areaCode, $callback, $params = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'emulateAreaCode'); if (!$pluginInfo) { return parent::emulateAreaCode($areaCode, $callback, $params); } else { return $this->___callPlugins('emulateAreaCode', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/App/Cache/0000775000175100017510000000000013545561736021567 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Cache/Type/0000775000175100017510000000000013545561736022510 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Cache/Type/Config/0000775000175100017510000000000013545561736023715 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Cache/Type/Config/Proxy.php0000664000175100017510000000647113545561736025557 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\Cache\Type\Config; /** * Proxy class for @see \Magento\Framework\App\Cache\Type\Config */ class Proxy extends \Magento\Framework\App\Cache\Type\Config implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\App\Cache\Type\Config */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\App\\Cache\\Type\\Config', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\App\Cache\Type\Config */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function getTag() { return $this->_getSubject()->getTag(); } /** * {@inheritdoc} */ public function save($data, $identifier, array $tags = [], $lifeTime = null) { return $this->_getSubject()->save($data, $identifier, $tags, $lifeTime); } /** * {@inheritdoc} */ public function clean($mode = 'all', array $tags = []) { return $this->_getSubject()->clean($mode, $tags); } /** * {@inheritdoc} */ public function test($identifier) { return $this->_getSubject()->test($identifier); } /** * {@inheritdoc} */ public function load($identifier) { return $this->_getSubject()->load($identifier); } /** * {@inheritdoc} */ public function remove($identifier) { return $this->_getSubject()->remove($identifier); } /** * {@inheritdoc} */ public function getBackend() { return $this->_getSubject()->getBackend(); } /** * {@inheritdoc} */ public function getLowLevelFrontend() { return $this->_getSubject()->getLowLevelFrontend(); } } generated/code/Magento/Framework/App/Route/0000775000175100017510000000000013545561736021662 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Route/Config/0000775000175100017510000000000013545561736023067 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Route/Config/Reader/0000775000175100017510000000000013545561736024271 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Route/Config/Reader/Proxy.php0000664000175100017510000000440713545561736026130 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\Route\Config\Reader; /** * Proxy class for @see \Magento\Framework\App\Route\Config\Reader */ class Proxy extends \Magento\Framework\App\Route\Config\Reader implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\App\Route\Config\Reader */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\App\\Route\\Config\\Reader', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\App\Route\Config\Reader */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function read($scope = null) { return $this->_getSubject()->read($scope); } } generated/code/Magento/Framework/App/Request/0000775000175100017510000000000013545561736022214 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Request/Http/0000775000175100017510000000000013545561736023133 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Request/Http/Proxy.php0000664000175100017510000004054313545561736024773 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\Request\Http; /** * Proxy class for @see \Magento\Framework\App\Request\Http */ class Proxy extends \Magento\Framework\App\Request\Http implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\App\Request\Http */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\App\\Request\\Http', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\App\Request\Http */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function getOriginalPathInfo() { return $this->_getSubject()->getOriginalPathInfo(); } /** * {@inheritdoc} */ public function getPathInfo() { return $this->_getSubject()->getPathInfo(); } /** * {@inheritdoc} */ public function setPathInfo($pathInfo = null) { return $this->_getSubject()->setPathInfo($pathInfo); } /** * {@inheritdoc} */ public function isDirectAccessFrontendName($code) { return $this->_getSubject()->isDirectAccessFrontendName($code); } /** * {@inheritdoc} */ public function getBasePath() { return $this->_getSubject()->getBasePath(); } /** * {@inheritdoc} */ public function getFrontName() { return $this->_getSubject()->getFrontName(); } /** * {@inheritdoc} */ public function setRouteName($route) { return $this->_getSubject()->setRouteName($route); } /** * {@inheritdoc} */ public function getRouteName() { return $this->_getSubject()->getRouteName(); } /** * {@inheritdoc} */ public function setControllerModule($module) { return $this->_getSubject()->setControllerModule($module); } /** * {@inheritdoc} */ public function getControllerModule() { return $this->_getSubject()->getControllerModule(); } /** * {@inheritdoc} */ public function initForward() { return $this->_getSubject()->initForward(); } /** * {@inheritdoc} */ public function getBeforeForwardInfo($name = null) { return $this->_getSubject()->getBeforeForwardInfo($name); } /** * {@inheritdoc} */ public function isAjax() { return $this->_getSubject()->isAjax(); } /** * {@inheritdoc} */ public function getDistroBaseUrl() { return $this->_getSubject()->getDistroBaseUrl(); } /** * {@inheritdoc} */ public function getFullActionName($delimiter = '_') { return $this->_getSubject()->getFullActionName($delimiter); } /** * {@inheritdoc} */ public function isSafeMethod() { return $this->_getSubject()->isSafeMethod(); } /** * {@inheritdoc} */ public function getModuleName() { return $this->_getSubject()->getModuleName(); } /** * {@inheritdoc} */ public function setModuleName($value) { return $this->_getSubject()->setModuleName($value); } /** * {@inheritdoc} */ public function getControllerName() { return $this->_getSubject()->getControllerName(); } /** * {@inheritdoc} */ public function setControllerName($value) { return $this->_getSubject()->setControllerName($value); } /** * {@inheritdoc} */ public function getActionName() { return $this->_getSubject()->getActionName(); } /** * {@inheritdoc} */ public function setActionName($value) { return $this->_getSubject()->setActionName($value); } /** * {@inheritdoc} */ public function getRequestString() { return $this->_getSubject()->getRequestString(); } /** * {@inheritdoc} */ public function getAlias($name) { return $this->_getSubject()->getAlias($name); } /** * {@inheritdoc} */ public function setAlias($name, $target) { return $this->_getSubject()->setAlias($name, $target); } /** * {@inheritdoc} */ public function getParam($key, $default = null) { return $this->_getSubject()->getParam($key, $default); } /** * {@inheritdoc} */ public function setParam($key, $value) { return $this->_getSubject()->setParam($key, $value); } /** * {@inheritdoc} */ public function getParams() { return $this->_getSubject()->getParams(); } /** * {@inheritdoc} */ public function setParams(array $array) { return $this->_getSubject()->setParams($array); } /** * {@inheritdoc} */ public function clearParams() { return $this->_getSubject()->clearParams(); } /** * {@inheritdoc} */ public function getScheme() { return $this->_getSubject()->getScheme(); } /** * {@inheritdoc} */ public function setDispatched($flag = true) { return $this->_getSubject()->setDispatched($flag); } /** * {@inheritdoc} */ public function isDispatched() { return $this->_getSubject()->isDispatched(); } /** * {@inheritdoc} */ public function isSecure() { return $this->_getSubject()->isSecure(); } /** * {@inheritdoc} */ public function getCookie($name = null, $default = null) { return $this->_getSubject()->getCookie($name, $default); } /** * {@inheritdoc} */ public function getServerValue($name = null, $default = null) { return $this->_getSubject()->getServerValue($name, $default); } /** * {@inheritdoc} */ public function getQueryValue($name = null, $default = null) { return $this->_getSubject()->getQueryValue($name, $default); } /** * {@inheritdoc} */ public function setQueryValue($name, $value = null) { return $this->_getSubject()->setQueryValue($name, $value); } /** * {@inheritdoc} */ public function getPostValue($name = null, $default = null) { return $this->_getSubject()->getPostValue($name, $default); } /** * {@inheritdoc} */ public function setPostValue($name, $value = null) { return $this->_getSubject()->setPostValue($name, $value); } /** * {@inheritdoc} */ public function __get($key) { return $this->_getSubject()->__get($key); } /** * {@inheritdoc} */ public function get($key) { return $this->_getSubject()->get($key); } /** * {@inheritdoc} */ public function __isset($key) { return $this->_getSubject()->__isset($key); } /** * {@inheritdoc} */ public function has($key) { return $this->_getSubject()->has($key); } /** * {@inheritdoc} */ public function getHeader($name, $default = false) { return $this->_getSubject()->getHeader($name, $default); } /** * {@inheritdoc} */ public function getHttpHost($trimPort = true) { return $this->_getSubject()->getHttpHost($trimPort); } /** * {@inheritdoc} */ public function getClientIp($checkProxy = true) { return $this->_getSubject()->getClientIp($checkProxy); } /** * {@inheritdoc} */ public function getUserParams() { return $this->_getSubject()->getUserParams(); } /** * {@inheritdoc} */ public function getUserParam($key, $default = null) { return $this->_getSubject()->getUserParam($key, $default); } /** * {@inheritdoc} */ public function setRequestUri($requestUri = null) { return $this->_getSubject()->setRequestUri($requestUri); } /** * {@inheritdoc} */ public function getBaseUrl() { return $this->_getSubject()->getBaseUrl(); } /** * {@inheritdoc} */ public function isForwarded() { return $this->_getSubject()->isForwarded(); } /** * {@inheritdoc} */ public function setForwarded($forwarded) { return $this->_getSubject()->setForwarded($forwarded); } /** * {@inheritdoc} */ public function getContent() { return $this->_getSubject()->getContent(); } /** * {@inheritdoc} */ public function setCookies($cookie) { return $this->_getSubject()->setCookies($cookie); } /** * {@inheritdoc} */ public function getRequestUri() { return $this->_getSubject()->getRequestUri(); } /** * {@inheritdoc} */ public function setBaseUrl($baseUrl) { return $this->_getSubject()->setBaseUrl($baseUrl); } /** * {@inheritdoc} */ public function setBasePath($basePath) { return $this->_getSubject()->setBasePath($basePath); } /** * {@inheritdoc} */ public function setServer(\Zend\Stdlib\ParametersInterface $server) { return $this->_getSubject()->setServer($server); } /** * {@inheritdoc} */ public function getServer($name = null, $default = null) { return $this->_getSubject()->getServer($name, $default); } /** * {@inheritdoc} */ public function setEnv(\Zend\Stdlib\ParametersInterface $env) { return $this->_getSubject()->setEnv($env); } /** * {@inheritdoc} */ public function getEnv($name = null, $default = null) { return $this->_getSubject()->getEnv($name, $default); } /** * {@inheritdoc} */ public function setMethod($method) { return $this->_getSubject()->setMethod($method); } /** * {@inheritdoc} */ public function getMethod() { return $this->_getSubject()->getMethod(); } /** * {@inheritdoc} */ public function setUri($uri) { return $this->_getSubject()->setUri($uri); } /** * {@inheritdoc} */ public function getUri() { return $this->_getSubject()->getUri(); } /** * {@inheritdoc} */ public function getUriString() { return $this->_getSubject()->getUriString(); } /** * {@inheritdoc} */ public function setQuery(\Zend\Stdlib\ParametersInterface $query) { return $this->_getSubject()->setQuery($query); } /** * {@inheritdoc} */ public function getQuery($name = null, $default = null) { return $this->_getSubject()->getQuery($name, $default); } /** * {@inheritdoc} */ public function setPost(\Zend\Stdlib\ParametersInterface $post) { return $this->_getSubject()->setPost($post); } /** * {@inheritdoc} */ public function getPost($name = null, $default = null) { return $this->_getSubject()->getPost($name, $default); } /** * {@inheritdoc} */ public function setFiles(\Zend\Stdlib\ParametersInterface $files) { return $this->_getSubject()->setFiles($files); } /** * {@inheritdoc} */ public function getFiles($name = null, $default = null) { return $this->_getSubject()->getFiles($name, $default); } /** * {@inheritdoc} */ public function getHeaders($name = null, $default = false) { return $this->_getSubject()->getHeaders($name, $default); } /** * {@inheritdoc} */ public function isOptions() { return $this->_getSubject()->isOptions(); } /** * {@inheritdoc} */ public function isPropFind() { return $this->_getSubject()->isPropFind(); } /** * {@inheritdoc} */ public function isGet() { return $this->_getSubject()->isGet(); } /** * {@inheritdoc} */ public function isHead() { return $this->_getSubject()->isHead(); } /** * {@inheritdoc} */ public function isPost() { return $this->_getSubject()->isPost(); } /** * {@inheritdoc} */ public function isPut() { return $this->_getSubject()->isPut(); } /** * {@inheritdoc} */ public function isDelete() { return $this->_getSubject()->isDelete(); } /** * {@inheritdoc} */ public function isTrace() { return $this->_getSubject()->isTrace(); } /** * {@inheritdoc} */ public function isConnect() { return $this->_getSubject()->isConnect(); } /** * {@inheritdoc} */ public function isPatch() { return $this->_getSubject()->isPatch(); } /** * {@inheritdoc} */ public function isXmlHttpRequest() { return $this->_getSubject()->isXmlHttpRequest(); } /** * {@inheritdoc} */ public function isFlashRequest() { return $this->_getSubject()->isFlashRequest(); } /** * {@inheritdoc} */ public function renderRequestLine() { return $this->_getSubject()->renderRequestLine(); } /** * {@inheritdoc} */ public function toString() { return $this->_getSubject()->toString(); } /** * {@inheritdoc} */ public function getAllowCustomMethods() { return $this->_getSubject()->getAllowCustomMethods(); } /** * {@inheritdoc} */ public function setAllowCustomMethods($strictMethods) { return $this->_getSubject()->setAllowCustomMethods($strictMethods); } /** * {@inheritdoc} */ public function setVersion($version) { return $this->_getSubject()->setVersion($version); } /** * {@inheritdoc} */ public function getVersion() { return $this->_getSubject()->getVersion(); } /** * {@inheritdoc} */ public function setHeaders(\Zend\Http\Headers $headers) { return $this->_getSubject()->setHeaders($headers); } /** * {@inheritdoc} */ public function __toString() { return $this->_getSubject()->__toString(); } /** * {@inheritdoc} */ public function setMetadata($spec, $value = null) { return $this->_getSubject()->setMetadata($spec, $value); } /** * {@inheritdoc} */ public function getMetadata($key = null, $default = null) { return $this->_getSubject()->getMetadata($key, $default); } /** * {@inheritdoc} */ public function setContent($value) { return $this->_getSubject()->setContent($value); } } generated/code/Magento/Framework/App/Http/0000775000175100017510000000000013545561747021505 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Http/Context/0000775000175100017510000000000013545561747023131 5ustar webmasterwebmastergenerated/code/Magento/Framework/App/Http/Context/Interceptor.php0000664000175100017510000000515513545561747026146 0ustar webmasterwebmaster<?php namespace Magento\Framework\App\Http\Context; /** * Interceptor class for @see \Magento\Framework\App\Http\Context */ class Interceptor extends \Magento\Framework\App\Http\Context implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(array $data = [], array $default = [], ?\Magento\Framework\Serialize\Serializer\Json $serializer = null) { $this->___init(); parent::__construct($data, $default, $serializer); } /** * {@inheritdoc} */ public function setValue($name, $value, $default) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setValue'); if (!$pluginInfo) { return parent::setValue($name, $value, $default); } else { return $this->___callPlugins('setValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsValue($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsValue'); if (!$pluginInfo) { return parent::unsValue($name); } else { return $this->___callPlugins('unsValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValue($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValue'); if (!$pluginInfo) { return parent::getValue($name); } else { return $this->___callPlugins('getValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData(); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getVaryString() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getVaryString'); if (!$pluginInfo) { return parent::getVaryString(); } else { return $this->___callPlugins('getVaryString', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray(); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/Data/0000775000175100017510000000000013545561714020711 5ustar webmasterwebmastergenerated/code/Magento/Framework/Data/Argument/0000775000175100017510000000000013545561714022473 5ustar webmasterwebmastergenerated/code/Magento/Framework/Data/Argument/InterpreterInterface/0000775000175100017510000000000013545561714026617 5ustar webmasterwebmastergenerated/code/Magento/Framework/Data/Argument/InterpreterInterface/Proxy.php0000664000175100017510000000450613545561714030456 0ustar webmasterwebmaster<?php namespace Magento\Framework\Data\Argument\InterpreterInterface; /** * Proxy class for @see \Magento\Framework\Data\Argument\InterpreterInterface */ class Proxy implements \Magento\Framework\Data\Argument\InterpreterInterface, \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Data\Argument\InterpreterInterface */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Data\\Argument\\InterpreterInterface', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Data\Argument\InterpreterInterface */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function evaluate(array $data) { return $this->_getSubject()->evaluate($data); } } generated/code/Magento/Framework/Config/0000775000175100017510000000000013545561736021251 5ustar webmasterwebmastergenerated/code/Magento/Framework/Config/DataInterfaceFactory.php0000664000175100017510000000213113545561714025775 0ustar webmasterwebmaster<?php namespace Magento\Framework\Config; /** * Factory class for @see \Magento\Framework\Config\DataInterface */ class DataInterfaceFactory { /** * 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\\Framework\\Config\\DataInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\Config\DataInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/Config/ThemeFactory.php0000664000175100017510000000207113545561736024354 0ustar webmasterwebmaster<?php namespace Magento\Framework\Config; /** * Factory class for @see \Magento\Framework\Config\Theme */ class ThemeFactory { /** * 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\\Framework\\Config\\Theme') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\Config\Theme */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/Config/Composer/0000775000175100017510000000000013545561736023040 5ustar webmasterwebmastergenerated/code/Magento/Framework/Config/Composer/PackageFactory.php0000664000175100017510000000214613545561736026437 0ustar webmasterwebmaster<?php namespace Magento\Framework\Config\Composer; /** * Factory class for @see \Magento\Framework\Config\Composer\Package */ class PackageFactory { /** * 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\\Framework\\Config\\Composer\\Package') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\Config\Composer\Package */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/MessageQueue/0000775000175100017510000000000013545561736022435 5ustar webmasterwebmastergenerated/code/Magento/Framework/MessageQueue/Topology/0000775000175100017510000000000013545561725024247 5ustar webmasterwebmastergenerated/code/Magento/Framework/MessageQueue/Topology/Config/0000775000175100017510000000000013545561725025454 5ustar webmasterwebmastergenerated/code/Magento/Framework/MessageQueue/Topology/Config/CompositeReader/0000775000175100017510000000000013545561725030541 5ustar webmasterwebmastergenerated/code/Magento/Framework/MessageQueue/Topology/Config/CompositeReader/Interceptor.php0000664000175100017510000000167313545561725033557 0ustar webmasterwebmaster<?php namespace Magento\Framework\MessageQueue\Topology\Config\CompositeReader; /** * Interceptor class for @see \Magento\Framework\MessageQueue\Topology\Config\CompositeReader */ class Interceptor extends \Magento\Framework\MessageQueue\Topology\Config\CompositeReader implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\MessageQueue\Topology\Config\ValidatorInterface $validator, array $readers) { $this->___init(); parent::__construct($validator, $readers); } /** * {@inheritdoc} */ public function read($scope = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'read'); if (!$pluginInfo) { return parent::read($scope); } else { return $this->___callPlugins('read', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/MessageQueue/Config/0000775000175100017510000000000013545561736023642 5ustar webmasterwebmastergenerated/code/Magento/Framework/MessageQueue/Config/Proxy.php0000664000175100017510000001006013545561736025471 0ustar webmasterwebmaster<?php namespace Magento\Framework\MessageQueue\Config; /** * Proxy class for @see \Magento\Framework\MessageQueue\Config */ class Proxy extends \Magento\Framework\MessageQueue\Config implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\MessageQueue\Config */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\MessageQueue\\Config', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\MessageQueue\Config */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function getExchangeByTopic($topicName) { return $this->_getSubject()->getExchangeByTopic($topicName); } /** * {@inheritdoc} */ public function getQueuesByTopic($topic) { return $this->_getSubject()->getQueuesByTopic($topic); } /** * {@inheritdoc} */ public function getConnectionByTopic($topic) { return $this->_getSubject()->getConnectionByTopic($topic); } /** * {@inheritdoc} */ public function getConnectionByConsumer($consumer) { return $this->_getSubject()->getConnectionByConsumer($consumer); } /** * {@inheritdoc} */ public function getMessageSchemaType($topic) { return $this->_getSubject()->getMessageSchemaType($topic); } /** * {@inheritdoc} */ public function getConsumerNames() { return $this->_getSubject()->getConsumerNames(); } /** * {@inheritdoc} */ public function getConsumer($name) { return $this->_getSubject()->getConsumer($name); } /** * {@inheritdoc} */ public function getBinds() { return $this->_getSubject()->getBinds(); } /** * {@inheritdoc} */ public function getPublishers() { return $this->_getSubject()->getPublishers(); } /** * {@inheritdoc} */ public function getConsumers() { return $this->_getSubject()->getConsumers(); } /** * {@inheritdoc} */ public function getTopic($name) { return $this->_getSubject()->getTopic($name); } /** * {@inheritdoc} */ public function getPublisher($name) { return $this->_getSubject()->getPublisher($name); } /** * {@inheritdoc} */ public function getResponseQueueName($topicName) { return $this->_getSubject()->getResponseQueueName($topicName); } } generated/code/Magento/Framework/Authorization/0000775000175100017510000000000013545561725022702 5ustar webmasterwebmastergenerated/code/Magento/Framework/Authorization/Interceptor.php0000664000175100017510000000166613545561725025722 0ustar webmasterwebmaster<?php namespace Magento\Framework\Authorization; /** * Interceptor class for @see \Magento\Framework\Authorization */ class Interceptor extends \Magento\Framework\Authorization implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Authorization\PolicyInterface $aclPolicy, \Magento\Framework\Authorization\RoleLocatorInterface $roleLocator) { $this->___init(); parent::__construct($aclPolicy, $roleLocator); } /** * {@inheritdoc} */ public function isAllowed($resource, $privilege = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isAllowed'); if (!$pluginInfo) { return parent::isAllowed($resource, $privilege); } else { return $this->___callPlugins('isAllowed', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/Webapi/0000775000175100017510000000000013545561725021251 5ustar webmasterwebmastergenerated/code/Magento/Framework/Webapi/ErrorProcessor/0000775000175100017510000000000013545561725024242 5ustar webmasterwebmastergenerated/code/Magento/Framework/Webapi/ErrorProcessor/Interceptor.php0000664000175100017510000000535313545561725027257 0ustar webmasterwebmaster<?php namespace Magento\Framework\Webapi\ErrorProcessor; /** * Interceptor class for @see \Magento\Framework\Webapi\ErrorProcessor */ class Interceptor extends \Magento\Framework\Webapi\ErrorProcessor implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Json\Encoder $encoder, \Magento\Framework\App\State $appState, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Filesystem $filesystem, ?\Magento\Framework\Serialize\Serializer\Json $serializer = null) { $this->___init(); parent::__construct($encoder, $appState, $logger, $filesystem, $serializer); } /** * {@inheritdoc} */ public function maskException(\Exception $exception) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'maskException'); if (!$pluginInfo) { return parent::maskException($exception); } else { return $this->___callPlugins('maskException', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function renderException(\Exception $exception, $httpCode = 500) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'renderException'); if (!$pluginInfo) { return parent::renderException($exception, $httpCode); } else { return $this->___callPlugins('renderException', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function renderErrorMessage($errorMessage, $trace = 'Trace is not available.', $httpCode = 500) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'renderErrorMessage'); if (!$pluginInfo) { return parent::renderErrorMessage($errorMessage, $trace, $httpCode); } else { return $this->___callPlugins('renderErrorMessage', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function registerShutdownFunction() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'registerShutdownFunction'); if (!$pluginInfo) { return parent::registerShutdownFunction(); } else { return $this->___callPlugins('registerShutdownFunction', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function apiShutdownFunction() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'apiShutdownFunction'); if (!$pluginInfo) { return parent::apiShutdownFunction(); } else { return $this->___callPlugins('apiShutdownFunction', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/Indexer/0000775000175100017510000000000013545561736021442 5ustar webmasterwebmastergenerated/code/Magento/Framework/Indexer/Config/0000775000175100017510000000000013545561731022642 5ustar webmasterwebmastergenerated/code/Magento/Framework/Indexer/Config/DependencyInfoProvider/0000775000175100017510000000000013545561731027247 5ustar webmasterwebmastergenerated/code/Magento/Framework/Indexer/Config/DependencyInfoProvider/Interceptor.php0000664000175100017510000000260213545561731032256 0ustar webmasterwebmaster<?php namespace Magento\Framework\Indexer\Config\DependencyInfoProvider; /** * Interceptor class for @see \Magento\Framework\Indexer\Config\DependencyInfoProvider */ class Interceptor extends \Magento\Framework\Indexer\Config\DependencyInfoProvider implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Indexer\ConfigInterface $config) { $this->___init(); parent::__construct($config); } /** * {@inheritdoc} */ public function getIndexerIdsToRunBefore(string $indexerId) : array { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIndexerIdsToRunBefore'); if (!$pluginInfo) { return parent::getIndexerIdsToRunBefore($indexerId); } else { return $this->___callPlugins('getIndexerIdsToRunBefore', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIndexerIdsToRunAfter(string $indexerId) : array { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIndexerIdsToRunAfter'); if (!$pluginInfo) { return parent::getIndexerIdsToRunAfter($indexerId); } else { return $this->___callPlugins('getIndexerIdsToRunAfter', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/Indexer/IndexerInterfaceFactory.php0000664000175100017510000000215113545561733026716 0ustar webmasterwebmaster<?php namespace Magento\Framework\Indexer; /** * Factory class for @see \Magento\Framework\Indexer\IndexerInterface */ class IndexerInterfaceFactory { /** * 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\\Framework\\Indexer\\IndexerInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\Indexer\IndexerInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/Indexer/MultiDimensionProviderFactory.php0000664000175100017510000000220113545561736030151 0ustar webmasterwebmaster<?php namespace Magento\Framework\Indexer; /** * Factory class for @see \Magento\Framework\Indexer\MultiDimensionProvider */ class MultiDimensionProviderFactory { /** * 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\\Framework\\Indexer\\MultiDimensionProvider') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\Indexer\MultiDimensionProvider */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/View/0000775000175100017510000000000013545561736020756 5ustar webmasterwebmastergenerated/code/Magento/Framework/View/Design/0000775000175100017510000000000013545561733022164 5ustar webmasterwebmastergenerated/code/Magento/Framework/View/Design/Theme/0000775000175100017510000000000013545561733023226 5ustar webmasterwebmastergenerated/code/Magento/Framework/View/Design/Theme/CustomizationFactory.php0000664000175100017510000000220713545561733030140 0ustar webmasterwebmaster<?php namespace Magento\Framework\View\Design\Theme; /** * Factory class for @see \Magento\Framework\View\Design\Theme\Customization */ class CustomizationFactory { /** * 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\\Framework\\View\\Design\\Theme\\Customization') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\View\Design\Theme\Customization */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/View/Asset/0000775000175100017510000000000013545561736022035 5ustar webmasterwebmastergenerated/code/Magento/Framework/View/Asset/Minification/0000775000175100017510000000000013545561736024446 5ustar webmasterwebmastergenerated/code/Magento/Framework/View/Asset/Minification/Interceptor.php0000664000175100017510000000550513545561736027462 0ustar webmasterwebmaster<?php namespace Magento\Framework\View\Asset\Minification; /** * Interceptor class for @see \Magento\Framework\View\Asset\Minification */ class Interceptor extends \Magento\Framework\View\Asset\Minification implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Framework\App\State $appState, $scope = 'store') { $this->___init(); parent::__construct($scopeConfig, $appState, $scope); } /** * {@inheritdoc} */ public function isEnabled($contentType) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEnabled'); if (!$pluginInfo) { return parent::isEnabled($contentType); } else { return $this->___callPlugins('isEnabled', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addMinifiedSign($filename) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addMinifiedSign'); if (!$pluginInfo) { return parent::addMinifiedSign($filename); } else { return $this->___callPlugins('addMinifiedSign', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function removeMinifiedSign($filename) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'removeMinifiedSign'); if (!$pluginInfo) { return parent::removeMinifiedSign($filename); } else { return $this->___callPlugins('removeMinifiedSign', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isMinifiedFilename($filename) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isMinifiedFilename'); if (!$pluginInfo) { return parent::isMinifiedFilename($filename); } else { return $this->___callPlugins('isMinifiedFilename', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isExcluded($filename) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isExcluded'); if (!$pluginInfo) { return parent::isExcluded($filename); } else { return $this->___callPlugins('isExcluded', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getExcludes($contentType) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getExcludes'); if (!$pluginInfo) { return parent::getExcludes($contentType); } else { return $this->___callPlugins('getExcludes', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/View/LayoutInterface/0000775000175100017510000000000013545561736024054 5ustar webmasterwebmastergenerated/code/Magento/Framework/View/LayoutInterface/Proxy.php0000664000175100017510000001717713545561736025723 0ustar webmasterwebmaster<?php namespace Magento\Framework\View\LayoutInterface; /** * Proxy class for @see \Magento\Framework\View\LayoutInterface */ class Proxy implements \Magento\Framework\View\LayoutInterface, \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\View\LayoutInterface */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\View\\LayoutInterface', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\View\LayoutInterface */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function getUpdate() { return $this->_getSubject()->getUpdate(); } /** * {@inheritdoc} */ public function generateXml() { return $this->_getSubject()->generateXml(); } /** * {@inheritdoc} */ public function generateElements() { return $this->_getSubject()->generateElements(); } /** * {@inheritdoc} */ public function renderElement($name, $useCache = true) { return $this->_getSubject()->renderElement($name, $useCache); } /** * {@inheritdoc} */ public function addOutputElement($name) { return $this->_getSubject()->addOutputElement($name); } /** * {@inheritdoc} */ public function getOutput() { return $this->_getSubject()->getOutput(); } /** * {@inheritdoc} */ public function hasElement($name) { return $this->_getSubject()->hasElement($name); } /** * {@inheritdoc} */ public function unsetElement($name) { return $this->_getSubject()->unsetElement($name); } /** * {@inheritdoc} */ public function getAllBlocks() { return $this->_getSubject()->getAllBlocks(); } /** * {@inheritdoc} */ public function getBlock($name) { return $this->_getSubject()->getBlock($name); } /** * {@inheritdoc} */ public function getChildBlock($parentName, $alias) { return $this->_getSubject()->getChildBlock($parentName, $alias); } /** * {@inheritdoc} */ public function setChild($parentName, $elementName, $alias) { return $this->_getSubject()->setChild($parentName, $elementName, $alias); } /** * {@inheritdoc} */ public function reorderChild($parentName, $childName, $offsetOrSibling, $after = true) { return $this->_getSubject()->reorderChild($parentName, $childName, $offsetOrSibling, $after); } /** * {@inheritdoc} */ public function unsetChild($parentName, $alias) { return $this->_getSubject()->unsetChild($parentName, $alias); } /** * {@inheritdoc} */ public function getChildNames($parentName) { return $this->_getSubject()->getChildNames($parentName); } /** * {@inheritdoc} */ public function getChildBlocks($parentName) { return $this->_getSubject()->getChildBlocks($parentName); } /** * {@inheritdoc} */ public function getChildName($parentName, $alias) { return $this->_getSubject()->getChildName($parentName, $alias); } /** * {@inheritdoc} */ public function addToParentGroup($blockName, $parentGroupName) { return $this->_getSubject()->addToParentGroup($blockName, $parentGroupName); } /** * {@inheritdoc} */ public function getGroupChildNames($blockName, $groupName) { return $this->_getSubject()->getGroupChildNames($blockName, $groupName); } /** * {@inheritdoc} */ public function getParentName($childName) { return $this->_getSubject()->getParentName($childName); } /** * {@inheritdoc} */ public function createBlock($type, $name = '', array $arguments = []) { return $this->_getSubject()->createBlock($type, $name, $arguments); } /** * {@inheritdoc} */ public function addBlock($block, $name = '', $parent = '', $alias = '') { return $this->_getSubject()->addBlock($block, $name, $parent, $alias); } /** * {@inheritdoc} */ public function addContainer($name, $label, array $options = [], $parent = '', $alias = '') { return $this->_getSubject()->addContainer($name, $label, $options, $parent, $alias); } /** * {@inheritdoc} */ public function renameElement($oldName, $newName) { return $this->_getSubject()->renameElement($oldName, $newName); } /** * {@inheritdoc} */ public function getElementAlias($name) { return $this->_getSubject()->getElementAlias($name); } /** * {@inheritdoc} */ public function removeOutputElement($name) { return $this->_getSubject()->removeOutputElement($name); } /** * {@inheritdoc} */ public function getMessagesBlock() { return $this->_getSubject()->getMessagesBlock(); } /** * {@inheritdoc} */ public function getBlockSingleton($type) { return $this->_getSubject()->getBlockSingleton($type); } /** * {@inheritdoc} */ public function getElementProperty($name, $attribute) { return $this->_getSubject()->getElementProperty($name, $attribute); } /** * {@inheritdoc} */ public function isBlock($name) { return $this->_getSubject()->isBlock($name); } /** * {@inheritdoc} */ public function isContainer($name) { return $this->_getSubject()->isContainer($name); } /** * {@inheritdoc} */ public function isManipulationAllowed($name) { return $this->_getSubject()->isManipulationAllowed($name); } /** * {@inheritdoc} */ public function setBlock($name, $block) { return $this->_getSubject()->setBlock($name, $block); } /** * {@inheritdoc} */ public function isCacheable() { return $this->_getSubject()->isCacheable(); } } generated/code/Magento/Framework/Reflection/0000775000175100017510000000000013545561733022133 5ustar webmasterwebmastergenerated/code/Magento/Framework/Reflection/CustomAttributesProcessor/0000775000175100017510000000000013545561733027354 5ustar webmasterwebmastergenerated/code/Magento/Framework/Reflection/CustomAttributesProcessor/Proxy.php0000664000175100017510000000475513545561733031221 0ustar webmasterwebmaster<?php namespace Magento\Framework\Reflection\CustomAttributesProcessor; /** * Proxy class for @see \Magento\Framework\Reflection\CustomAttributesProcessor */ class Proxy extends \Magento\Framework\Reflection\CustomAttributesProcessor implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Reflection\CustomAttributesProcessor */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Reflection\\CustomAttributesProcessor', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Reflection\CustomAttributesProcessor */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function buildOutputDataArray(\Magento\Framework\Api\CustomAttributesDataInterface $objectWithCustomAttributes, $dataObjectType) { return $this->_getSubject()->buildOutputDataArray($objectWithCustomAttributes, $dataObjectType); } } generated/code/Magento/Framework/Reflection/ExtensionAttributesProcessor/0000775000175100017510000000000013545561733030056 5ustar webmasterwebmastergenerated/code/Magento/Framework/Reflection/ExtensionAttributesProcessor/Proxy.php0000664000175100017510000000473613545561733031722 0ustar webmasterwebmaster<?php namespace Magento\Framework\Reflection\ExtensionAttributesProcessor; /** * Proxy class for @see \Magento\Framework\Reflection\ExtensionAttributesProcessor */ class Proxy extends \Magento\Framework\Reflection\ExtensionAttributesProcessor implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Reflection\ExtensionAttributesProcessor */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Reflection\\ExtensionAttributesProcessor', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Reflection\ExtensionAttributesProcessor */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function buildOutputDataArray(\Magento\Framework\Api\ExtensionAttributesInterface $dataObject, $dataObjectType) { return $this->_getSubject()->buildOutputDataArray($dataObject, $dataObjectType); } } generated/code/Magento/Framework/Mail/0000775000175100017510000000000013545561734020724 5ustar webmasterwebmastergenerated/code/Magento/Framework/Mail/Template/0000775000175100017510000000000013545561734022477 5ustar webmasterwebmastergenerated/code/Magento/Framework/Mail/Template/TransportBuilder/0000775000175100017510000000000013545561734026002 5ustar webmasterwebmastergenerated/code/Magento/Framework/Mail/Template/TransportBuilder/Interceptor.php0000664000175100017510000001204313545561734031011 0ustar webmasterwebmaster<?php namespace Magento\Framework\Mail\Template\TransportBuilder; /** * Interceptor class for @see \Magento\Framework\Mail\Template\TransportBuilder */ class Interceptor extends \Magento\Framework\Mail\Template\TransportBuilder implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Mail\Template\FactoryInterface $templateFactory, \Magento\Framework\Mail\MessageInterface $message, \Magento\Framework\Mail\Template\SenderResolverInterface $senderResolver, \Magento\Framework\ObjectManagerInterface $objectManager, \Magento\Framework\Mail\TransportInterfaceFactory $mailTransportFactory, ?\Magento\Framework\Mail\MessageInterfaceFactory $messageFactory = null) { $this->___init(); parent::__construct($templateFactory, $message, $senderResolver, $objectManager, $mailTransportFactory, $messageFactory); } /** * {@inheritdoc} */ public function addCc($address, $name = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addCc'); if (!$pluginInfo) { return parent::addCc($address, $name); } else { return $this->___callPlugins('addCc', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addTo($address, $name = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addTo'); if (!$pluginInfo) { return parent::addTo($address, $name); } else { return $this->___callPlugins('addTo', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addBcc($address) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addBcc'); if (!$pluginInfo) { return parent::addBcc($address); } else { return $this->___callPlugins('addBcc', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setReplyTo($email, $name = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setReplyTo'); if (!$pluginInfo) { return parent::setReplyTo($email, $name); } else { return $this->___callPlugins('setReplyTo', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setFrom($from) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setFrom'); if (!$pluginInfo) { return parent::setFrom($from); } else { return $this->___callPlugins('setFrom', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setFromByScope($from, $scopeId = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setFromByScope'); if (!$pluginInfo) { return parent::setFromByScope($from, $scopeId); } else { return $this->___callPlugins('setFromByScope', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setTemplateIdentifier($templateIdentifier) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setTemplateIdentifier'); if (!$pluginInfo) { return parent::setTemplateIdentifier($templateIdentifier); } else { return $this->___callPlugins('setTemplateIdentifier', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setTemplateModel($templateModel) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setTemplateModel'); if (!$pluginInfo) { return parent::setTemplateModel($templateModel); } else { return $this->___callPlugins('setTemplateModel', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setTemplateVars($templateVars) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setTemplateVars'); if (!$pluginInfo) { return parent::setTemplateVars($templateVars); } else { return $this->___callPlugins('setTemplateVars', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setTemplateOptions($templateOptions) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setTemplateOptions'); if (!$pluginInfo) { return parent::setTemplateOptions($templateOptions); } else { return $this->___callPlugins('setTemplateOptions', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTransport() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTransport'); if (!$pluginInfo) { return parent::getTransport(); } else { return $this->___callPlugins('getTransport', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/Mail/MessageInterfaceFactory.php0000664000175100017510000000213513545561734026173 0ustar webmasterwebmaster<?php namespace Magento\Framework\Mail; /** * Factory class for @see \Magento\Framework\Mail\MessageInterface */ class MessageInterfaceFactory { /** * 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\\Framework\\Mail\\MessageInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\Mail\MessageInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/Mail/Message/0000775000175100017510000000000013545561734022310 5ustar webmasterwebmastergenerated/code/Magento/Framework/Mail/Message/Interceptor.php0000664000175100017510000001257313545561734025327 0ustar webmasterwebmaster<?php namespace Magento\Framework\Mail\Message; /** * Interceptor class for @see \Magento\Framework\Mail\Message */ class Interceptor extends \Magento\Framework\Mail\Message implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct($charset = 'utf-8') { $this->___init(); parent::__construct($charset); } /** * {@inheritdoc} */ public function setMessageType($type) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setMessageType'); if (!$pluginInfo) { return parent::setMessageType($type); } else { return $this->___callPlugins('setMessageType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setBody($body) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setBody'); if (!$pluginInfo) { return parent::setBody($body); } else { return $this->___callPlugins('setBody', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setSubject($subject) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setSubject'); if (!$pluginInfo) { return parent::setSubject($subject); } else { return $this->___callPlugins('setSubject', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSubject() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSubject'); if (!$pluginInfo) { return parent::getSubject(); } else { return $this->___callPlugins('getSubject', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getBody() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getBody'); if (!$pluginInfo) { return parent::getBody(); } else { return $this->___callPlugins('getBody', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setFrom($fromAddress) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setFrom'); if (!$pluginInfo) { return parent::setFrom($fromAddress); } else { return $this->___callPlugins('setFrom', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setFromAddress($fromAddress, $fromName = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setFromAddress'); if (!$pluginInfo) { return parent::setFromAddress($fromAddress, $fromName); } else { return $this->___callPlugins('setFromAddress', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addTo($toAddress) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addTo'); if (!$pluginInfo) { return parent::addTo($toAddress); } else { return $this->___callPlugins('addTo', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addCc($ccAddress) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addCc'); if (!$pluginInfo) { return parent::addCc($ccAddress); } else { return $this->___callPlugins('addCc', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addBcc($bccAddress) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addBcc'); if (!$pluginInfo) { return parent::addBcc($bccAddress); } else { return $this->___callPlugins('addBcc', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setReplyTo($replyToAddress) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setReplyTo'); if (!$pluginInfo) { return parent::setReplyTo($replyToAddress); } else { return $this->___callPlugins('setReplyTo', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getRawMessage() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getRawMessage'); if (!$pluginInfo) { return parent::getRawMessage(); } else { return $this->___callPlugins('getRawMessage', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setBodyHtml($html) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setBodyHtml'); if (!$pluginInfo) { return parent::setBodyHtml($html); } else { return $this->___callPlugins('setBodyHtml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setBodyText($text) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setBodyText'); if (!$pluginInfo) { return parent::setBodyText($text); } else { return $this->___callPlugins('setBodyText', func_get_args(), $pluginInfo); } } } generated/code/Magento/Framework/ObjectManager/0000775000175100017510000000000013545561735022544 5ustar webmasterwebmastergenerated/code/Magento/Framework/ObjectManager/Config/0000775000175100017510000000000013545561735023751 5ustar webmasterwebmastergenerated/code/Magento/Framework/ObjectManager/Config/Reader/0000775000175100017510000000000013545561735025153 5ustar webmasterwebmastergenerated/code/Magento/Framework/ObjectManager/Config/Reader/Dom/0000775000175100017510000000000013545561735025672 5ustar webmasterwebmastergenerated/code/Magento/Framework/ObjectManager/Config/Reader/Dom/Proxy.php0000664000175100017510000000446713545561735027537 0ustar webmasterwebmaster<?php namespace Magento\Framework\ObjectManager\Config\Reader\Dom; /** * Proxy class for @see \Magento\Framework\ObjectManager\Config\Reader\Dom */ class Proxy extends \Magento\Framework\ObjectManager\Config\Reader\Dom implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\ObjectManager\Config\Reader\Dom */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\ObjectManager\\Config\\Reader\\Dom', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\ObjectManager\Config\Reader\Dom */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function read($scope = null) { return $this->_getSubject()->read($scope); } } generated/code/Magento/Framework/Validator/0000775000175100017510000000000013545561736021771 5ustar webmasterwebmastergenerated/code/Magento/Framework/Validator/RegexFactory.php0000664000175100017510000000210513545561736025102 0ustar webmasterwebmaster<?php namespace Magento\Framework\Validator; /** * Factory class for @see \Magento\Framework\Validator\Regex */ class RegexFactory { /** * 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\\Framework\\Validator\\Regex') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\Validator\Regex */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/Event/0000775000175100017510000000000013545561736021125 5ustar webmasterwebmastergenerated/code/Magento/Framework/Event/Manager/0000775000175100017510000000000013545561736022477 5ustar webmasterwebmastergenerated/code/Magento/Framework/Event/Manager/Proxy.php0000664000175100017510000000435313545561736024336 0ustar webmasterwebmaster<?php namespace Magento\Framework\Event\Manager; /** * Proxy class for @see \Magento\Framework\Event\Manager */ class Proxy extends \Magento\Framework\Event\Manager implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Event\Manager */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Event\\Manager', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Event\Manager */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function dispatch($eventName, array $data = []) { return $this->_getSubject()->dispatch($eventName, $data); } } generated/code/Magento/Framework/Event/Config/0000775000175100017510000000000013545561736022332 5ustar webmasterwebmastergenerated/code/Magento/Framework/Event/Config/Reader/0000775000175100017510000000000013545561736023534 5ustar webmasterwebmastergenerated/code/Magento/Framework/Event/Config/Reader/Proxy.php0000664000175100017510000000435613545561736025376 0ustar webmasterwebmaster<?php namespace Magento\Framework\Event\Config\Reader; /** * Proxy class for @see \Magento\Framework\Event\Config\Reader */ class Proxy extends \Magento\Framework\Event\Config\Reader implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Event\Config\Reader */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Event\\Config\\Reader', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Event\Config\Reader */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function read($scope = null) { return $this->_getSubject()->read($scope); } } generated/code/Magento/Framework/Model/0000775000175100017510000000000013545561736021104 5ustar webmasterwebmastergenerated/code/Magento/Framework/Model/ActionValidator/0000775000175100017510000000000013545561736024167 5ustar webmasterwebmastergenerated/code/Magento/Framework/Model/ActionValidator/RemoveAction/0000775000175100017510000000000013545561736026562 5ustar webmasterwebmastergenerated/code/Magento/Framework/Model/ActionValidator/RemoveAction/Proxy.php0000664000175100017510000000456213545561736030423 0ustar webmasterwebmaster<?php namespace Magento\Framework\Model\ActionValidator\RemoveAction; /** * Proxy class for @see \Magento\Framework\Model\ActionValidator\RemoveAction */ class Proxy extends \Magento\Framework\Model\ActionValidator\RemoveAction implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Model\ActionValidator\RemoveAction */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Model\\ActionValidator\\RemoveAction', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Model\ActionValidator\RemoveAction */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function isAllowed(\Magento\Framework\Model\AbstractModel $model) { return $this->_getSubject()->isAllowed($model); } } generated/code/Magento/Framework/Cache/0000775000175100017510000000000013545561736021047 5ustar webmasterwebmastergenerated/code/Magento/Framework/Cache/Config/0000775000175100017510000000000013545561736022254 5ustar webmasterwebmastergenerated/code/Magento/Framework/Cache/Config/Reader/0000775000175100017510000000000013545561736023456 5ustar webmasterwebmastergenerated/code/Magento/Framework/Cache/Config/Reader/Proxy.php0000664000175100017510000000435613545561736025320 0ustar webmasterwebmaster<?php namespace Magento\Framework\Cache\Config\Reader; /** * Proxy class for @see \Magento\Framework\Cache\Config\Reader */ class Proxy extends \Magento\Framework\Cache\Config\Reader implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Cache\Config\Reader */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Cache\\Config\\Reader', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Cache\Config\Reader */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function read($scope = null) { return $this->_getSubject()->read($scope); } } generated/code/Magento/Framework/DB/0000775000175100017510000000000013545561736020331 5ustar webmasterwebmastergenerated/code/Magento/Framework/DB/Logger/0000775000175100017510000000000013545561736021550 5ustar webmasterwebmastergenerated/code/Magento/Framework/DB/Logger/FileFactory.php0000664000175100017510000000210213545561736024463 0ustar webmasterwebmaster<?php namespace Magento\Framework\DB\Logger; /** * Factory class for @see \Magento\Framework\DB\Logger\File */ class FileFactory { /** * 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\\Framework\\DB\\Logger\\File') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\DB\Logger\File */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/DB/Logger/QuietFactory.php0000664000175100017510000000210613545561736024677 0ustar webmasterwebmaster<?php namespace Magento\Framework\DB\Logger; /** * Factory class for @see \Magento\Framework\DB\Logger\Quiet */ class QuietFactory { /** * 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\\Framework\\DB\\Logger\\Quiet') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\DB\Logger\Quiet */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/DB/Query/0000775000175100017510000000000013545561736021436 5ustar webmasterwebmastergenerated/code/Magento/Framework/DB/Query/BatchRangeIteratorFactory.php0000664000175100017510000000216613545561736027214 0ustar webmasterwebmaster<?php namespace Magento\Framework\DB\Query; /** * Factory class for @see \Magento\Framework\DB\Query\BatchRangeIterator */ class BatchRangeIteratorFactory { /** * 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\\Framework\\DB\\Query\\BatchRangeIterator') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\DB\Query\BatchRangeIterator */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Framework/Acl/0000775000175100017510000000000013545561736020543 5ustar webmasterwebmastergenerated/code/Magento/Framework/Acl/Builder/0000775000175100017510000000000013545561736022131 5ustar webmasterwebmastergenerated/code/Magento/Framework/Acl/Builder/Proxy.php0000664000175100017510000000447613545561736023776 0ustar webmasterwebmaster<?php namespace Magento\Framework\Acl\Builder; /** * Proxy class for @see \Magento\Framework\Acl\Builder */ class Proxy extends \Magento\Framework\Acl\Builder implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Acl\Builder */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Acl\\Builder', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Acl\Builder */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function getAcl() { return $this->_getSubject()->getAcl(); } /** * {@inheritdoc} */ public function resetRuntimeAcl() { return $this->_getSubject()->resetRuntimeAcl(); } } generated/code/Magento/Framework/Url/0000775000175100017510000000000013545561736020606 5ustar webmasterwebmastergenerated/code/Magento/Framework/Url/SecurityInfo/0000775000175100017510000000000013545561736023231 5ustar webmasterwebmastergenerated/code/Magento/Framework/Url/SecurityInfo/Proxy.php0000664000175100017510000000433013545561736025063 0ustar webmasterwebmaster<?php namespace Magento\Framework\Url\SecurityInfo; /** * Proxy class for @see \Magento\Framework\Url\SecurityInfo */ class Proxy extends \Magento\Framework\Url\SecurityInfo implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Url\SecurityInfo */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Url\\SecurityInfo', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Url\SecurityInfo */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function isSecure($url) { return $this->_getSubject()->isSecure($url); } } generated/code/Magento/Framework/Session/0000775000175100017510000000000013545561736021467 5ustar webmasterwebmastergenerated/code/Magento/Framework/Session/Generic/0000775000175100017510000000000013545561736023043 5ustar webmasterwebmastergenerated/code/Magento/Framework/Session/Generic/Proxy.php0000664000175100017510000001143513545561736024701 0ustar webmasterwebmaster<?php namespace Magento\Framework\Session\Generic; /** * Proxy class for @see \Magento\Framework\Session\Generic */ class Proxy extends \Magento\Framework\Session\Generic implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Session\Generic */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Session\\Generic', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Session\Generic */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function writeClose() { return $this->_getSubject()->writeClose(); } /** * {@inheritdoc} */ public function __call($method, $args) { return $this->_getSubject()->__call($method, $args); } /** * {@inheritdoc} */ public function start() { return $this->_getSubject()->start(); } /** * {@inheritdoc} */ public function isSessionExists() { return $this->_getSubject()->isSessionExists(); } /** * {@inheritdoc} */ public function getData($key = '', $clear = false) { return $this->_getSubject()->getData($key, $clear); } /** * {@inheritdoc} */ public function getSessionId() { return $this->_getSubject()->getSessionId(); } /** * {@inheritdoc} */ public function getName() { return $this->_getSubject()->getName(); } /** * {@inheritdoc} */ public function setName($name) { return $this->_getSubject()->setName($name); } /** * {@inheritdoc} */ public function destroy(?array $options = null) { return $this->_getSubject()->destroy($options); } /** * {@inheritdoc} */ public function clearStorage() { return $this->_getSubject()->clearStorage(); } /** * {@inheritdoc} */ public function getCookieDomain() { return $this->_getSubject()->getCookieDomain(); } /** * {@inheritdoc} */ public function getCookiePath() { return $this->_getSubject()->getCookiePath(); } /** * {@inheritdoc} */ public function getCookieLifetime() { return $this->_getSubject()->getCookieLifetime(); } /** * {@inheritdoc} */ public function setSessionId($sessionId) { return $this->_getSubject()->setSessionId($sessionId); } /** * {@inheritdoc} */ public function getSessionIdForHost($urlHost) { return $this->_getSubject()->getSessionIdForHost($urlHost); } /** * {@inheritdoc} */ public function isValidForHost($host) { return $this->_getSubject()->isValidForHost($host); } /** * {@inheritdoc} */ public function isValidForPath($path) { return $this->_getSubject()->isValidForPath($path); } /** * {@inheritdoc} */ public function regenerateId() { return $this->_getSubject()->regenerateId(); } /** * {@inheritdoc} */ public function expireSessionCookie() { return $this->_getSubject()->expireSessionCookie(); } } generated/code/Magento/Framework/Session/SidResolver/0000775000175100017510000000000013545561736023730 5ustar webmasterwebmastergenerated/code/Magento/Framework/Session/SidResolver/Proxy.php0000664000175100017510000000615313545561736025567 0ustar webmasterwebmaster<?php namespace Magento\Framework\Session\SidResolver; /** * Proxy class for @see \Magento\Framework\Session\SidResolver */ class Proxy extends \Magento\Framework\Session\SidResolver implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Session\SidResolver */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Session\\SidResolver', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Session\SidResolver */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function getSid(\Magento\Framework\Session\SessionManagerInterface $session) { return $this->_getSubject()->getSid($session); } /** * {@inheritdoc} */ public function getSessionIdQueryParam(\Magento\Framework\Session\SessionManagerInterface $session) { return $this->_getSubject()->getSessionIdQueryParam($session); } /** * {@inheritdoc} */ public function setUseSessionVar($var) { return $this->_getSubject()->setUseSessionVar($var); } /** * {@inheritdoc} */ public function getUseSessionVar() { return $this->_getSubject()->getUseSessionVar(); } /** * {@inheritdoc} */ public function setUseSessionInUrl($flag = true) { return $this->_getSubject()->setUseSessionInUrl($flag); } /** * {@inheritdoc} */ public function getUseSessionInUrl() { return $this->_getSubject()->getUseSessionInUrl(); } } generated/code/Magento/Framework/Translate/0000775000175100017510000000000013545561736022001 5ustar webmasterwebmastergenerated/code/Magento/Framework/Translate/Inline/0000775000175100017510000000000013545561736023217 5ustar webmasterwebmastergenerated/code/Magento/Framework/Translate/Inline/ConfigInterface/0000775000175100017510000000000013545561736026245 5ustar webmasterwebmastergenerated/code/Magento/Framework/Translate/Inline/ConfigInterface/Proxy.php0000664000175100017510000000473213545561736030105 0ustar webmasterwebmaster<?php namespace Magento\Framework\Translate\Inline\ConfigInterface; /** * Proxy class for @see \Magento\Framework\Translate\Inline\ConfigInterface */ class Proxy implements \Magento\Framework\Translate\Inline\ConfigInterface, \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Translate\Inline\ConfigInterface */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Translate\\Inline\\ConfigInterface', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Translate\Inline\ConfigInterface */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function isActive($scope = null) { return $this->_getSubject()->isActive($scope); } /** * {@inheritdoc} */ public function isDevAllowed($scope = null) { return $this->_getSubject()->isDevAllowed($scope); } } generated/code/Magento/Framework/Translate/Inline/ParserInterface/0000775000175100017510000000000013545561736026274 5ustar webmasterwebmastergenerated/code/Magento/Framework/Translate/Inline/ParserInterface/Proxy.php0000664000175100017510000000566613545561736030143 0ustar webmasterwebmaster<?php namespace Magento\Framework\Translate\Inline\ParserInterface; /** * Proxy class for @see \Magento\Framework\Translate\Inline\ParserInterface */ class Proxy implements \Magento\Framework\Translate\Inline\ParserInterface, \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Framework\Translate\Inline\ParserInterface */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Framework\\Translate\\Inline\\ParserInterface', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Framework\Translate\Inline\ParserInterface */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function processAjaxPost(array $translateParams) { return $this->_getSubject()->processAjaxPost($translateParams); } /** * {@inheritdoc} */ public function processResponseBodyString($body) { return $this->_getSubject()->processResponseBodyString($body); } /** * {@inheritdoc} */ public function getContent() { return $this->_getSubject()->getContent(); } /** * {@inheritdoc} */ public function setContent($content) { return $this->_getSubject()->setContent($content); } /** * {@inheritdoc} */ public function setIsJson($flag) { return $this->_getSubject()->setIsJson($flag); } } generated/code/Magento/Framework/HTTP/0000775000175100017510000000000013545561736020623 5ustar webmasterwebmastergenerated/code/Magento/Framework/HTTP/Client/0000775000175100017510000000000013545561736022041 5ustar webmasterwebmastergenerated/code/Magento/Framework/HTTP/Client/CurlFactory.php0000664000175100017510000000211213545561736025003 0ustar webmasterwebmaster<?php namespace Magento\Framework\HTTP\Client; /** * Factory class for @see \Magento\Framework\HTTP\Client\Curl */ class CurlFactory { /** * 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\\Framework\\HTTP\\Client\\Curl') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\HTTP\Client\Curl */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/0000775000175100017510000000000013545561736016622 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/0000775000175100017510000000000013545561736017662 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/Adminhtml/0000775000175100017510000000000013545561714021573 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/Adminhtml/System/0000775000175100017510000000000013545561714023057 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/Adminhtml/System/Config/0000775000175100017510000000000013545561714024264 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/Adminhtml/System/Config/Source/0000775000175100017510000000000013545561736025530 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/Adminhtml/System/Config/Source/InputtypeFactory.php0000664000175100017510000000225513545561714031572 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\Adminhtml\System\Config\Source; /** * Factory class for @see \Magento\Eav\Model\Adminhtml\System\Config\Source\Inputtype */ class InputtypeFactory { /** * 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\\Eav\\Model\\Adminhtml\\System\\Config\\Source\\Inputtype') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\Adminhtml\System\Config\Source\Inputtype */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype/0000775000175100017510000000000013545561736027531 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype/ValidatorFactory.php0000664000175100017510000000232613545561736033522 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\Adminhtml\System\Config\Source\Inputtype; /** * Factory class for @see \Magento\Eav\Model\Adminhtml\System\Config\Source\Inputtype\Validator */ class ValidatorFactory { /** * 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\\Eav\\Model\\Adminhtml\\System\\Config\\Source\\Inputtype\\Validator') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\Adminhtml\System\Config\Source\Inputtype\Validator */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/EntityFactory.php0000664000175100017510000000204113545561733023171 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model; /** * Factory class for @see \Magento\Eav\Model\Entity */ class EntityFactory { /** * 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\\Eav\\Model\\Entity') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\Entity */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/Entity/0000775000175100017510000000000013545561736021136 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/Entity/Attribute/0000775000175100017510000000000013545561736023101 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/Entity/Attribute/Set/0000775000175100017510000000000013545561733023631 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/Entity/Attribute/Set/Interceptor.php0000664000175100017510000007520113545561733026645 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\Entity\Attribute\Set; /** * Interceptor class for @see \Magento\Eav\Model\Entity\Attribute\Set */ class Interceptor extends \Magento\Eav\Model\Entity\Attribute\Set implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory, \Magento\Framework\Api\AttributeValueFactory $customAttributeFactory, \Magento\Eav\Model\Config $eavConfig, \Magento\Eav\Model\Entity\Attribute\GroupFactory $attrGroupFactory, \Magento\Eav\Model\Entity\AttributeFactory $attributeFactory, \Magento\Eav\Model\ResourceModel\Entity\Attribute $resourceAttribute, ?\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, ?\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = []) { $this->___init(); parent::__construct($context, $registry, $extensionFactory, $customAttributeFactory, $eavConfig, $attrGroupFactory, $attributeFactory, $resourceAttribute, $resource, $resourceCollection, $data); } /** * {@inheritdoc} */ public function initFromSkeleton($skeletonId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'initFromSkeleton'); if (!$pluginInfo) { return parent::initFromSkeleton($skeletonId); } else { return $this->___callPlugins('initFromSkeleton', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function organizeData($data) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'organizeData'); if (!$pluginInfo) { return parent::organizeData($data); } else { return $this->___callPlugins('organizeData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validate() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validate'); if (!$pluginInfo) { return parent::validate(); } else { return $this->___callPlugins('validate', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addSetInfo($entityType, array $attributes, $setId = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addSetInfo'); if (!$pluginInfo) { return parent::addSetInfo($entityType, $attributes, $setId); } else { return $this->___callPlugins('addSetInfo', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultGroupId($setId = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultGroupId'); if (!$pluginInfo) { return parent::getDefaultGroupId($setId); } else { return $this->___callPlugins('getDefaultGroupId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttributeSetId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttributeSetId'); if (!$pluginInfo) { return parent::getAttributeSetId(); } else { return $this->___callPlugins('getAttributeSetId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttributeSetName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttributeSetName'); if (!$pluginInfo) { return parent::getAttributeSetName(); } else { return $this->___callPlugins('getAttributeSetName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSortOrder() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSortOrder'); if (!$pluginInfo) { return parent::getSortOrder(); } else { return $this->___callPlugins('getSortOrder', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityTypeId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityTypeId'); if (!$pluginInfo) { return parent::getEntityTypeId(); } else { return $this->___callPlugins('getEntityTypeId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setName'); if (!$pluginInfo) { return parent::setName($name); } else { return $this->___callPlugins('setName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setAttributeSetId($attributeSetId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setAttributeSetId'); if (!$pluginInfo) { return parent::setAttributeSetId($attributeSetId); } else { return $this->___callPlugins('setAttributeSetId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setAttributeSetName($attributeSetName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setAttributeSetName'); if (!$pluginInfo) { return parent::setAttributeSetName($attributeSetName); } else { return $this->___callPlugins('setAttributeSetName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setSortOrder($sortOrder) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setSortOrder'); if (!$pluginInfo) { return parent::setSortOrder($sortOrder); } else { return $this->___callPlugins('setSortOrder', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntityTypeId($entityTypeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityTypeId'); if (!$pluginInfo) { return parent::setEntityTypeId($entityTypeId); } else { return $this->___callPlugins('setEntityTypeId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getExtensionAttributes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getExtensionAttributes'); if (!$pluginInfo) { return parent::getExtensionAttributes(); } else { return $this->___callPlugins('getExtensionAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setExtensionAttributes(\Magento\Eav\Api\Data\AttributeSetExtensionInterface $extensionAttributes) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setExtensionAttributes'); if (!$pluginInfo) { return parent::setExtensionAttributes($extensionAttributes); } else { return $this->___callPlugins('setExtensionAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCustomAttributes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCustomAttributes'); if (!$pluginInfo) { return parent::getCustomAttributes(); } else { return $this->___callPlugins('getCustomAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCustomAttribute($attributeCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCustomAttribute'); if (!$pluginInfo) { return parent::getCustomAttribute($attributeCode); } else { return $this->___callPlugins('getCustomAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCustomAttributes(array $attributes) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCustomAttributes'); if (!$pluginInfo) { return parent::setCustomAttributes($attributes); } else { return $this->___callPlugins('setCustomAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCustomAttribute($attributeCode, $attributeValue) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCustomAttribute'); if (!$pluginInfo) { return parent::setCustomAttribute($attributeCode, $attributeValue); } else { return $this->___callPlugins('setCustomAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setData($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); if (!$pluginInfo) { return parent::setData($key, $value); } else { return $this->___callPlugins('setData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); if (!$pluginInfo) { return parent::unsetData($key); } else { return $this->___callPlugins('unsetData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData($key = '', $index = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData($key, $index); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setId($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setId'); if (!$pluginInfo) { return parent::setId($value); } else { return $this->___callPlugins('setId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIdFieldName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIdFieldName'); if (!$pluginInfo) { return parent::setIdFieldName($name); } else { return $this->___callPlugins('setIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId'); if (!$pluginInfo) { return parent::getId(); } else { return $this->___callPlugins('getId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDeleted($isDeleted = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleted'); if (!$pluginInfo) { return parent::isDeleted($isDeleted); } else { return $this->___callPlugins('isDeleted', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanges() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanges'); if (!$pluginInfo) { return parent::hasDataChanges(); } else { return $this->___callPlugins('hasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataChanges($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataChanges'); if (!$pluginInfo) { return parent::setDataChanges($value); } else { return $this->___callPlugins('setDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOrigData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOrigData'); if (!$pluginInfo) { return parent::getOrigData($key); } else { return $this->___callPlugins('getOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setOrigData($key = null, $data = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrigData'); if (!$pluginInfo) { return parent::setOrigData($key, $data); } else { return $this->___callPlugins('setOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function dataHasChangedFor($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dataHasChangedFor'); if (!$pluginInfo) { return parent::dataHasChangedFor($field); } else { return $this->___callPlugins('dataHasChangedFor', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceName'); if (!$pluginInfo) { return parent::getResourceName(); } else { return $this->___callPlugins('getResourceName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceCollection'); if (!$pluginInfo) { return parent::getResourceCollection(); } else { return $this->___callPlugins('getResourceCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCollection'); if (!$pluginInfo) { return parent::getCollection(); } else { return $this->___callPlugins('getCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($modelId, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($modelId, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeLoad($identifier, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeLoad'); if (!$pluginInfo) { return parent::beforeLoad($identifier, $field); } else { return $this->___callPlugins('beforeLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad(); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isSaveAllowed() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isSaveAllowed'); if (!$pluginInfo) { return parent::isSaveAllowed(); } else { return $this->___callPlugins('isSaveAllowed', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setHasDataChanges($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHasDataChanges'); if (!$pluginInfo) { return parent::setHasDataChanges($flag); } else { return $this->___callPlugins('setHasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save(); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterCommitCallback() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterCommitCallback'); if (!$pluginInfo) { return parent::afterCommitCallback(); } else { return $this->___callPlugins('afterCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isObjectNew($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isObjectNew'); if (!$pluginInfo) { return parent::isObjectNew($flag); } else { return $this->___callPlugins('isObjectNew', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave(); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validateBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateBeforeSave'); if (!$pluginInfo) { return parent::validateBeforeSave(); } else { return $this->___callPlugins('validateBeforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCacheTags() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCacheTags'); if (!$pluginInfo) { return parent::getCacheTags(); } else { return $this->___callPlugins('getCacheTags', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function cleanModelCache() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanModelCache'); if (!$pluginInfo) { return parent::cleanModelCache(); } else { return $this->___callPlugins('cleanModelCache', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave(); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete(); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete(); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete(); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDeleteCommit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDeleteCommit'); if (!$pluginInfo) { return parent::afterDeleteCommit(); } else { return $this->___callPlugins('afterDeleteCommit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResource() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); if (!$pluginInfo) { return parent::getResource(); } else { return $this->___callPlugins('getResource', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityId'); if (!$pluginInfo) { return parent::getEntityId(); } else { return $this->___callPlugins('getEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntityId($entityId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityId'); if (!$pluginInfo) { return parent::setEntityId($entityId); } else { return $this->___callPlugins('setEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clearInstance() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clearInstance'); if (!$pluginInfo) { return parent::clearInstance(); } else { return $this->___callPlugins('clearInstance', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoredData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoredData'); if (!$pluginInfo) { return parent::getStoredData(); } else { return $this->___callPlugins('getStoredData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEventPrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEventPrefix'); if (!$pluginInfo) { return parent::getEventPrefix(); } else { return $this->___callPlugins('getEventPrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addData(array $arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); if (!$pluginInfo) { return parent::addData($arr); } else { return $this->___callPlugins('addData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByPath($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); if (!$pluginInfo) { return parent::getDataByPath($path); } else { return $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); if (!$pluginInfo) { return parent::getDataByKey($key); } else { return $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataUsingMethod($key, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); if (!$pluginInfo) { return parent::setDataUsingMethod($key, $args); } else { return $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataUsingMethod($key, $args = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); if (!$pluginInfo) { return parent::getDataUsingMethod($key, $args); } else { return $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasData($key = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); if (!$pluginInfo) { return parent::hasData($key); } else { return $this->___callPlugins('hasData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray($keys); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); if (!$pluginInfo) { return parent::convertToArray($keys); } else { return $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); if (!$pluginInfo) { return parent::toXml($keys, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('toXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); if (!$pluginInfo) { return parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); if (!$pluginInfo) { return parent::toJson($keys); } else { return $this->___callPlugins('toJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); if (!$pluginInfo) { return parent::convertToJson($keys); } else { return $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toString($format = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); if (!$pluginInfo) { return parent::toString($format); } else { return $this->___callPlugins('toString', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function __call($method, $args) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); if (!$pluginInfo) { return parent::__call($method, $args); } else { return $this->___callPlugins('__call', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isEmpty() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); if (!$pluginInfo) { return parent::isEmpty(); } else { return $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); if (!$pluginInfo) { return parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); } else { return $this->___callPlugins('serialize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function debug($data = null, &$objects = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); if (!$pluginInfo) { return parent::debug($data, $objects); } else { return $this->___callPlugins('debug', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetSet($offset, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); if (!$pluginInfo) { return parent::offsetSet($offset, $value); } else { return $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetExists($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); if (!$pluginInfo) { return parent::offsetExists($offset); } else { return $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetUnset($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); if (!$pluginInfo) { return parent::offsetUnset($offset); } else { return $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetGet($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); if (!$pluginInfo) { return parent::offsetGet($offset); } else { return $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo); } } } generated/code/Magento/Eav/Model/Entity/Attribute/FrontendLabelFactory.php0000664000175100017510000000220313545561733027653 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\Entity\Attribute; /** * Factory class for @see \Magento\Eav\Model\Entity\Attribute\FrontendLabel */ class FrontendLabelFactory { /** * 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\\Eav\\Model\\Entity\\Attribute\\FrontendLabel') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\Entity\Attribute\FrontendLabel */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/Entity/Attribute/SetFactory.php0000664000175100017510000000213313545561736025674 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\Entity\Attribute; /** * Factory class for @see \Magento\Eav\Model\Entity\Attribute\Set */ class SetFactory { /** * 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\\Eav\\Model\\Entity\\Attribute\\Set') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\Entity\Attribute\Set */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/Entity/Attribute/GroupFactory.php0000664000175100017510000000214313545561736026236 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\Entity\Attribute; /** * Factory class for @see \Magento\Eav\Model\Entity\Attribute\Group */ class GroupFactory { /** * 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\\Eav\\Model\\Entity\\Attribute\\Group') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\Entity\Attribute\Group */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/Entity/StoreFactory.php0000664000175100017510000000207213545561733024271 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\Entity; /** * Factory class for @see \Magento\Eav\Model\Entity\Store */ class StoreFactory { /** * 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\\Eav\\Model\\Entity\\Store') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\Entity\Store */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/Entity/TypeFactory.php0000664000175100017510000000206613545561736024124 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\Entity; /** * Factory class for @see \Magento\Eav\Model\Entity\Type */ class TypeFactory { /** * 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\\Eav\\Model\\Entity\\Type') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\Entity\Type */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/Entity/AttributeFactory.php0000664000175100017510000000211213545561736025136 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\Entity; /** * Factory class for @see \Magento\Eav\Model\Entity\Attribute */ class AttributeFactory { /** * 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\\Eav\\Model\\Entity\\Attribute') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\Entity\Attribute */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/ResourceModel/0000775000175100017510000000000013545561736022432 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/ResourceModel/Entity/0000775000175100017510000000000013545561736023706 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/ResourceModel/Entity/Type/0000775000175100017510000000000013545561736024627 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/ResourceModel/Entity/Type/CollectionFactory.php0000664000175100017510000000223413545561736030764 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\ResourceModel\Entity\Type; /** * Factory class for @see \Magento\Eav\Model\ResourceModel\Entity\Type\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\\Eav\\Model\\ResourceModel\\Entity\\Type\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\ResourceModel\Entity\Type\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/0000775000175100017510000000000013545561736025651 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/CollectionFactory.php0000664000175100017510000000226013545561736032005 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\ResourceModel\Entity\Attribute; /** * Factory class for @see \Magento\Eav\Model\ResourceModel\Entity\Attribute\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\\Eav\\Model\\ResourceModel\\Entity\\Attribute\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\ResourceModel\Entity\Attribute\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Interceptor.php0000664000175100017510000003466513545561736030676 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\ResourceModel\Entity\Attribute; /** * Interceptor class for @see \Magento\Eav\Model\ResourceModel\Entity\Attribute */ class Interceptor extends \Magento\Eav\Model\ResourceModel\Entity\Attribute implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\ResourceModel\Db\Context $context, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Eav\Model\ResourceModel\Entity\Type $eavEntityType, $connectionName = null) { $this->___init(); parent::__construct($context, $storeManager, $eavEntityType, $connectionName); } /** * {@inheritdoc} */ public function loadByCode(\Magento\Framework\Model\AbstractModel $object, $entityTypeId, $code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'loadByCode'); if (!$pluginInfo) { return parent::loadByCode($object, $entityTypeId, $code); } else { return $this->___callPlugins('loadByCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function deleteEntity(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'deleteEntity'); if (!$pluginInfo) { return parent::deleteEntity($object); } else { return $this->___callPlugins('deleteEntity', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function saveInSetIncluding(\Magento\Framework\Model\AbstractModel $object, $attributeEntityId = null, $attributeSetId = null, $attributeGroupId = null, $attributeSortOrder = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'saveInSetIncluding'); if (!$pluginInfo) { return parent::saveInSetIncluding($object, $attributeEntityId, $attributeSetId, $attributeGroupId, $attributeSortOrder); } else { return $this->___callPlugins('saveInSetIncluding', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdByCode($entityType, $code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdByCode'); if (!$pluginInfo) { return parent::getIdByCode($entityType, $code); } else { return $this->___callPlugins('getIdByCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityAttribute($entityAttributeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityAttribute'); if (!$pluginInfo) { return parent::getEntityAttribute($entityAttributeId); } else { return $this->___callPlugins('getEntityAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttributeCodesByFrontendType($frontendType) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttributeCodesByFrontendType'); if (!$pluginInfo) { return parent::getAttributeCodesByFrontendType($frontendType); } else { return $this->___callPlugins('getAttributeCodesByFrontendType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFlatUpdateSelect(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute, $storeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFlatUpdateSelect'); if (!$pluginInfo) { return parent::getFlatUpdateSelect($attribute, $storeId); } else { return $this->___callPlugins('getFlatUpdateSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function describeTable($table) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'describeTable'); if (!$pluginInfo) { return parent::describeTable($table); } else { return $this->___callPlugins('describeTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAdditionalAttributeTable($entityTypeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAdditionalAttributeTable'); if (!$pluginInfo) { return parent::getAdditionalAttributeTable($entityTypeId); } else { return $this->___callPlugins('getAdditionalAttributeTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoreLabelsByAttributeId($attributeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoreLabelsByAttributeId'); if (!$pluginInfo) { return parent::getStoreLabelsByAttributeId($attributeId); } else { return $this->___callPlugins('getStoreLabelsByAttributeId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValidAttributeIds($attributeIds) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValidAttributeIds'); if (!$pluginInfo) { return parent::getValidAttributeIds($attributeIds); } else { return $this->___callPlugins('getValidAttributeIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getMainTable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMainTable'); if (!$pluginInfo) { return parent::getMainTable(); } else { return $this->___callPlugins('getMainTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTable($tableName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTable'); if (!$pluginInfo) { return parent::getTable($tableName); } else { return $this->___callPlugins('getTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConnection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConnection'); if (!$pluginInfo) { return parent::getConnection(); } else { return $this->___callPlugins('getConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load(\Magento\Framework\Model\AbstractModel $object, $value, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($object, $value, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($object); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($object); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addUniqueField($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addUniqueField'); if (!$pluginInfo) { return parent::addUniqueField($field); } else { return $this->___callPlugins('addUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function resetUniqueField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resetUniqueField'); if (!$pluginInfo) { return parent::resetUniqueField(); } else { return $this->___callPlugins('resetUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unserializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unserializeFields'); if (!$pluginInfo) { return parent::unserializeFields($object); } else { return $this->___callPlugins('unserializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getUniqueFields() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUniqueFields'); if (!$pluginInfo) { return parent::getUniqueFields(); } else { return $this->___callPlugins('getUniqueFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanged($object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanged'); if (!$pluginInfo) { return parent::hasDataChanged($object); } else { return $this->___callPlugins('hasDataChanged', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getChecksum($table) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getChecksum'); if (!$pluginInfo) { return parent::getChecksum($table); } else { return $this->___callPlugins('getChecksum', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad($object); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave($object); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave($object); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete($object); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete($object); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serializeFields'); if (!$pluginInfo) { return parent::serializeFields($object); } else { return $this->___callPlugins('serializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beginTransaction() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beginTransaction'); if (!$pluginInfo) { return parent::beginTransaction(); } else { return $this->___callPlugins('beginTransaction', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addCommitCallback($callback) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addCommitCallback'); if (!$pluginInfo) { return parent::addCommitCallback($callback); } else { return $this->___callPlugins('addCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function commit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'commit'); if (!$pluginInfo) { return parent::commit(); } else { return $this->___callPlugins('commit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function rollBack() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'rollBack'); if (!$pluginInfo) { return parent::rollBack(); } else { return $this->___callPlugins('rollBack', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValidationRulesBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValidationRulesBeforeSave'); if (!$pluginInfo) { return parent::getValidationRulesBeforeSave(); } else { return $this->___callPlugins('getValidationRulesBeforeSave', func_get_args(), $pluginInfo); } } } generated/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group/0000775000175100017510000000000013545561736026745 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group/CollectionFactory.php0000664000175100017510000000231113545561736033076 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\ResourceModel\Entity\Attribute\Group; /** * Factory class for @see \Magento\Eav\Model\ResourceModel\Entity\Attribute\Group\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\\Eav\\Model\\ResourceModel\\Entity\\Attribute\\Group\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\ResourceModel\Entity\Attribute\Group\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set/0000775000175100017510000000000013545561736026404 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set/CollectionFactory.php0000664000175100017510000000230113545561736032534 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\ResourceModel\Entity\Attribute\Set; /** * Factory class for @see \Magento\Eav\Model\ResourceModel\Entity\Attribute\Set\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\\Eav\\Model\\ResourceModel\\Entity\\Attribute\\Set\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\ResourceModel\Entity\Attribute\Set\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/GroupFactory.php0000664000175100017510000000223413545561736031007 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\ResourceModel\Entity\Attribute; /** * Factory class for @see \Magento\Eav\Model\ResourceModel\Entity\Attribute\Group */ class GroupFactory { /** * 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\\Eav\\Model\\ResourceModel\\Entity\\Attribute\\Group') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\ResourceModel\Entity\Attribute\Group */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/ConfigFactory.php0000664000175100017510000000204113545561736023125 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model; /** * Factory class for @see \Magento\Eav\Model\Config */ class ConfigFactory { /** * 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\\Eav\\Model\\Config') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Model\Config */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Model/AttributeSetRepository/0000775000175100017510000000000013545561736024401 5ustar webmasterwebmastergenerated/code/Magento/Eav/Model/AttributeSetRepository/Interceptor.php0000664000175100017510000000574713545561736027425 0ustar webmasterwebmaster<?php namespace Magento\Eav\Model\AttributeSetRepository; /** * Interceptor class for @see \Magento\Eav\Model\AttributeSetRepository */ class Interceptor extends \Magento\Eav\Model\AttributeSetRepository implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Eav\Model\ResourceModel\Entity\Attribute\Set $attributeSetResource, \Magento\Eav\Model\Entity\Attribute\SetFactory $attributeSetFactory, \Magento\Eav\Model\ResourceModel\Entity\Attribute\Set\CollectionFactory $collectionFactory, \Magento\Eav\Model\Config $eavConfig, \Magento\Eav\Api\Data\AttributeSetSearchResultsInterfaceFactory $searchResultFactory, \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $joinProcessor, ?\Magento\Framework\Api\SearchCriteria\CollectionProcessorInterface $collectionProcessor = null) { $this->___init(); parent::__construct($attributeSetResource, $attributeSetFactory, $collectionFactory, $eavConfig, $searchResultFactory, $joinProcessor, $collectionProcessor); } /** * {@inheritdoc} */ public function save(\Magento\Eav\Api\Data\AttributeSetInterface $attributeSet) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($attributeSet); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getList(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getList'); if (!$pluginInfo) { return parent::getList($searchCriteria); } else { return $this->___callPlugins('getList', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function get($attributeSetId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'get'); if (!$pluginInfo) { return parent::get($attributeSetId); } else { return $this->___callPlugins('get', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete(\Magento\Eav\Api\Data\AttributeSetInterface $attributeSet) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($attributeSet); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function deleteById($attributeSetId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'deleteById'); if (!$pluginInfo) { return parent::deleteById($attributeSetId); } else { return $this->___callPlugins('deleteById', func_get_args(), $pluginInfo); } } } generated/code/Magento/Eav/Api/0000775000175100017510000000000013545561733017330 5ustar webmasterwebmastergenerated/code/Magento/Eav/Api/Data/0000775000175100017510000000000013545561736020204 5ustar webmasterwebmastergenerated/code/Magento/Eav/Api/Data/AttributeSetExtensionInterface.php0000664000175100017510000000035113545561733027046 0ustar webmasterwebmaster<?php namespace Magento\Eav\Api\Data; /** * ExtensionInterface class for @see \Magento\Eav\Api\Data\AttributeSetInterface */ interface AttributeSetExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface { } generated/code/Magento/Eav/Api/Data/AttributeOptionInterfaceFactory.php0000664000175100017510000000216613545561733027224 0ustar webmasterwebmaster<?php namespace Magento\Eav\Api\Data; /** * Factory class for @see \Magento\Eav\Api\Data\AttributeOptionInterface */ class AttributeOptionInterfaceFactory { /** * 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\\Eav\\Api\\Data\\AttributeOptionInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Api\Data\AttributeOptionInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Api/Data/AttributeExtension.php0000664000175100017510000000035413545561733024554 0ustar webmasterwebmaster<?php namespace Magento\Eav\Api\Data; /** * Extension class for @see \Magento\Eav\Api\Data\AttributeInterface */ class AttributeExtension extends \Magento\Framework\Api\AbstractSimpleObject implements AttributeExtensionInterface { } generated/code/Magento/Eav/Api/Data/AttributeExtensionInterface.php0000664000175100017510000000034313545561733026373 0ustar webmasterwebmaster<?php namespace Magento\Eav\Api\Data; /** * ExtensionInterface class for @see \Magento\Eav\Api\Data\AttributeInterface */ interface AttributeExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface { } generated/code/Magento/Eav/Api/Data/AttributeExtensionFactory.php0000664000175100017510000000213613545561733026104 0ustar webmasterwebmaster<?php namespace Magento\Eav\Api\Data; /** * Factory class for @see \Magento\Eav\Api\Data\AttributeExtension */ class AttributeExtensionFactory { /** * 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\\Eav\\Api\\Data\\AttributeExtension') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Api\Data\AttributeExtension */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Api/Data/AttributeSearchResultsInterfaceFactory.php0000664000175100017510000000222213545561736030537 0ustar webmasterwebmaster<?php namespace Magento\Eav\Api\Data; /** * Factory class for @see \Magento\Eav\Api\Data\AttributeSearchResultsInterface */ class AttributeSearchResultsInterfaceFactory { /** * 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\\Eav\\Api\\Data\\AttributeSearchResultsInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Api\Data\AttributeSearchResultsInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Api/Data/AttributeSetSearchResultsInterfaceFactory.php0000664000175100017510000000223613545561736031220 0ustar webmasterwebmaster<?php namespace Magento\Eav\Api\Data; /** * Factory class for @see \Magento\Eav\Api\Data\AttributeSetSearchResultsInterface */ class AttributeSetSearchResultsInterfaceFactory { /** * 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\\Eav\\Api\\Data\\AttributeSetSearchResultsInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Api\Data\AttributeSetSearchResultsInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Api/Data/AttributeGroupSearchResultsInterfaceFactory.php0000664000175100017510000000224613545561736031562 0ustar webmasterwebmaster<?php namespace Magento\Eav\Api\Data; /** * Factory class for @see \Magento\Eav\Api\Data\AttributeGroupSearchResultsInterface */ class AttributeGroupSearchResultsInterfaceFactory { /** * 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\\Eav\\Api\\Data\\AttributeGroupSearchResultsInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Api\Data\AttributeGroupSearchResultsInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Eav/Setup/0000775000175100017510000000000013545561736017722 5ustar webmasterwebmastergenerated/code/Magento/Eav/Setup/EavSetupFactory.php0000664000175100017510000000205113545561736023515 0ustar webmasterwebmaster<?php namespace Magento\Eav\Setup; /** * Factory class for @see \Magento\Eav\Setup\EavSetup */ class EavSetupFactory { /** * 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\\Eav\\Setup\\EavSetup') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Eav\Setup\EavSetup */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Catalog/0000775000175100017510000000000013545561736017461 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/0000775000175100017510000000000013545561736020521 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/ResourceModel/0000775000175100017510000000000013545561736023271 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/ResourceModel/Product/0000775000175100017510000000000013545561714024705 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/ResourceModel/Product/CollectionFactory.php0000664000175100017510000000223313545561714031041 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Model\ResourceModel\Product; /** * Factory class for @see \Magento\Catalog\Model\ResourceModel\Product\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\\Catalog\\Model\\ResourceModel\\Product\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Catalog\Model\ResourceModel\Product\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Catalog/Model/ResourceModel/ConfigFactory.php0000664000175100017510000000215213545561725026535 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Model\ResourceModel; /** * Factory class for @see \Magento\Catalog\Model\ResourceModel\Config */ class ConfigFactory { /** * 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\\Catalog\\Model\\ResourceModel\\Config') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Catalog\Model\ResourceModel\Config */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Catalog/Model/ResourceModel/Attribute/0000775000175100017510000000000013545561736025234 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/ResourceModel/Attribute/Interceptor.php0000664000175100017510000003506613545561736030255 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Model\ResourceModel\Attribute; /** * Interceptor class for @see \Magento\Catalog\Model\ResourceModel\Attribute */ class Interceptor extends \Magento\Catalog\Model\ResourceModel\Attribute implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\ResourceModel\Db\Context $context, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Eav\Model\ResourceModel\Entity\Type $eavEntityType, \Magento\Eav\Model\Config $eavConfig, \Magento\Catalog\Model\Attribute\LockValidatorInterface $lockValidator, $connectionName = null) { $this->___init(); parent::__construct($context, $storeManager, $eavEntityType, $eavConfig, $lockValidator, $connectionName); } /** * {@inheritdoc} */ public function deleteEntity(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'deleteEntity'); if (!$pluginInfo) { return parent::deleteEntity($object); } else { return $this->___callPlugins('deleteEntity', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function loadByCode(\Magento\Framework\Model\AbstractModel $object, $entityTypeId, $code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'loadByCode'); if (!$pluginInfo) { return parent::loadByCode($object, $entityTypeId, $code); } else { return $this->___callPlugins('loadByCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function saveInSetIncluding(\Magento\Framework\Model\AbstractModel $object, $attributeEntityId = null, $attributeSetId = null, $attributeGroupId = null, $attributeSortOrder = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'saveInSetIncluding'); if (!$pluginInfo) { return parent::saveInSetIncluding($object, $attributeEntityId, $attributeSetId, $attributeGroupId, $attributeSortOrder); } else { return $this->___callPlugins('saveInSetIncluding', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdByCode($entityType, $code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdByCode'); if (!$pluginInfo) { return parent::getIdByCode($entityType, $code); } else { return $this->___callPlugins('getIdByCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityAttribute($entityAttributeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityAttribute'); if (!$pluginInfo) { return parent::getEntityAttribute($entityAttributeId); } else { return $this->___callPlugins('getEntityAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttributeCodesByFrontendType($frontendType) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttributeCodesByFrontendType'); if (!$pluginInfo) { return parent::getAttributeCodesByFrontendType($frontendType); } else { return $this->___callPlugins('getAttributeCodesByFrontendType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFlatUpdateSelect(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute, $storeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFlatUpdateSelect'); if (!$pluginInfo) { return parent::getFlatUpdateSelect($attribute, $storeId); } else { return $this->___callPlugins('getFlatUpdateSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function describeTable($table) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'describeTable'); if (!$pluginInfo) { return parent::describeTable($table); } else { return $this->___callPlugins('describeTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAdditionalAttributeTable($entityTypeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAdditionalAttributeTable'); if (!$pluginInfo) { return parent::getAdditionalAttributeTable($entityTypeId); } else { return $this->___callPlugins('getAdditionalAttributeTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoreLabelsByAttributeId($attributeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoreLabelsByAttributeId'); if (!$pluginInfo) { return parent::getStoreLabelsByAttributeId($attributeId); } else { return $this->___callPlugins('getStoreLabelsByAttributeId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValidAttributeIds($attributeIds) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValidAttributeIds'); if (!$pluginInfo) { return parent::getValidAttributeIds($attributeIds); } else { return $this->___callPlugins('getValidAttributeIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getMainTable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMainTable'); if (!$pluginInfo) { return parent::getMainTable(); } else { return $this->___callPlugins('getMainTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTable($tableName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTable'); if (!$pluginInfo) { return parent::getTable($tableName); } else { return $this->___callPlugins('getTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConnection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConnection'); if (!$pluginInfo) { return parent::getConnection(); } else { return $this->___callPlugins('getConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load(\Magento\Framework\Model\AbstractModel $object, $value, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($object, $value, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($object); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($object); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addUniqueField($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addUniqueField'); if (!$pluginInfo) { return parent::addUniqueField($field); } else { return $this->___callPlugins('addUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function resetUniqueField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resetUniqueField'); if (!$pluginInfo) { return parent::resetUniqueField(); } else { return $this->___callPlugins('resetUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unserializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unserializeFields'); if (!$pluginInfo) { return parent::unserializeFields($object); } else { return $this->___callPlugins('unserializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getUniqueFields() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUniqueFields'); if (!$pluginInfo) { return parent::getUniqueFields(); } else { return $this->___callPlugins('getUniqueFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanged($object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanged'); if (!$pluginInfo) { return parent::hasDataChanged($object); } else { return $this->___callPlugins('hasDataChanged', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getChecksum($table) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getChecksum'); if (!$pluginInfo) { return parent::getChecksum($table); } else { return $this->___callPlugins('getChecksum', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad($object); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave($object); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave($object); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete($object); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete($object); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serializeFields'); if (!$pluginInfo) { return parent::serializeFields($object); } else { return $this->___callPlugins('serializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beginTransaction() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beginTransaction'); if (!$pluginInfo) { return parent::beginTransaction(); } else { return $this->___callPlugins('beginTransaction', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addCommitCallback($callback) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addCommitCallback'); if (!$pluginInfo) { return parent::addCommitCallback($callback); } else { return $this->___callPlugins('addCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function commit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'commit'); if (!$pluginInfo) { return parent::commit(); } else { return $this->___callPlugins('commit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function rollBack() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'rollBack'); if (!$pluginInfo) { return parent::rollBack(); } else { return $this->___callPlugins('rollBack', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValidationRulesBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValidationRulesBeforeSave'); if (!$pluginInfo) { return parent::getValidationRulesBeforeSave(); } else { return $this->___callPlugins('getValidationRulesBeforeSave', func_get_args(), $pluginInfo); } } } generated/code/Magento/Catalog/Model/ResourceModel/Category/0000775000175100017510000000000013545561736025046 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/ResourceModel/Category/Proxy.php0000664000175100017510000003343313545561736026706 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Model\ResourceModel\Category; /** * Proxy class for @see \Magento\Catalog\Model\ResourceModel\Category */ class Proxy extends \Magento\Catalog\Model\ResourceModel\Category implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Catalog\Model\ResourceModel\Category */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Catalog\\Model\\ResourceModel\\Category', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Catalog\Model\ResourceModel\Category */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function getEntityType() { return $this->_getSubject()->getEntityType(); } /** * {@inheritdoc} */ public function getCategoryProductTable() { return $this->_getSubject()->getCategoryProductTable(); } /** * {@inheritdoc} */ public function setStoreId($storeId) { return $this->_getSubject()->setStoreId($storeId); } /** * {@inheritdoc} */ public function getStoreId() { return $this->_getSubject()->getStoreId(); } /** * {@inheritdoc} */ public function deleteChildren(\Magento\Framework\DataObject $object) { return $this->_getSubject()->deleteChildren($object); } /** * {@inheritdoc} */ public function getProductsPosition($category) { return $this->_getSubject()->getProductsPosition($category); } /** * {@inheritdoc} */ public function getChildrenCount($categoryId) { return $this->_getSubject()->getChildrenCount($categoryId); } /** * {@inheritdoc} */ public function checkId($entityId) { return $this->_getSubject()->checkId($entityId); } /** * {@inheritdoc} */ public function verifyIds(array $ids) { return $this->_getSubject()->verifyIds($ids); } /** * {@inheritdoc} */ public function getChildrenAmount($category, $isActiveFlag = true) { return $this->_getSubject()->getChildrenAmount($category, $isActiveFlag); } /** * {@inheritdoc} */ public function getIsActiveAttributeId() { return $this->_getSubject()->getIsActiveAttributeId(); } /** * {@inheritdoc} */ public function findWhereAttributeIs($entityIdsFilter, $attribute, $expectedValue) { return $this->_getSubject()->findWhereAttributeIs($entityIdsFilter, $attribute, $expectedValue); } /** * {@inheritdoc} */ public function getProductCount($category) { return $this->_getSubject()->getProductCount($category); } /** * {@inheritdoc} */ public function getCategories($parent, $recursionLevel = 0, $sorted = false, $asCollection = false, $toLoad = true) { return $this->_getSubject()->getCategories($parent, $recursionLevel, $sorted, $asCollection, $toLoad); } /** * {@inheritdoc} */ public function getParentCategories($category) { return $this->_getSubject()->getParentCategories($category); } /** * {@inheritdoc} */ public function getParentDesignCategory($category) { return $this->_getSubject()->getParentDesignCategory($category); } /** * {@inheritdoc} */ public function getChildrenCategories($category) { return $this->_getSubject()->getChildrenCategories($category); } /** * {@inheritdoc} */ public function getChildren($category, $recursive = true) { return $this->_getSubject()->getChildren($category, $recursive); } /** * {@inheritdoc} */ public function getAllChildren($category) { return $this->_getSubject()->getAllChildren($category); } /** * {@inheritdoc} */ public function isInRootCategoryList($category) { return $this->_getSubject()->isInRootCategoryList($category); } /** * {@inheritdoc} */ public function isForbiddenToDelete($categoryId) { return $this->_getSubject()->isForbiddenToDelete($categoryId); } /** * {@inheritdoc} */ public function getCategoryPathById($categoryId) { return $this->_getSubject()->getCategoryPathById($categoryId); } /** * {@inheritdoc} */ public function changeParent(\Magento\Catalog\Model\Category $category, \Magento\Catalog\Model\Category $newParent, $afterCategoryId = null) { return $this->_getSubject()->changeParent($category, $newParent, $afterCategoryId); } /** * {@inheritdoc} */ public function countVisible() { return $this->_getSubject()->countVisible(); } /** * {@inheritdoc} */ public function load($object, $entityId, $attributes = []) { return $this->_getSubject()->load($object, $entityId, $attributes); } /** * {@inheritdoc} */ public function delete($object) { return $this->_getSubject()->delete($object); } /** * {@inheritdoc} */ public function save(\Magento\Framework\Model\AbstractModel $object) { return $this->_getSubject()->save($object); } /** * {@inheritdoc} */ public function getDefaultStoreId() { return $this->_getSubject()->getDefaultStoreId(); } /** * {@inheritdoc} */ public function getAttributeRawValue($entityId, $attribute, $store) { return $this->_getSubject()->getAttributeRawValue($entityId, $attribute, $store); } /** * {@inheritdoc} */ public function setConnection($connection) { return $this->_getSubject()->setConnection($connection); } /** * {@inheritdoc} */ public function getConnection() { return $this->_getSubject()->getConnection(); } /** * {@inheritdoc} */ public function getIdFieldName() { return $this->_getSubject()->getIdFieldName(); } /** * {@inheritdoc} */ public function getTable($alias) { return $this->_getSubject()->getTable($alias); } /** * {@inheritdoc} */ public function setType($type) { return $this->_getSubject()->setType($type); } /** * {@inheritdoc} */ public function getType() { return $this->_getSubject()->getType(); } /** * {@inheritdoc} */ public function getTypeId() { return $this->_getSubject()->getTypeId(); } /** * {@inheritdoc} */ public function unsetAttributes($attributes = null) { return $this->_getSubject()->unsetAttributes($attributes); } /** * {@inheritdoc} */ public function getAttribute($attribute) { return $this->_getSubject()->getAttribute($attribute); } /** * {@inheritdoc} */ public function addAttribute(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute, $object = null) { return $this->_getSubject()->addAttribute($attribute, $object); } /** * {@inheritdoc} */ public function isPartialLoad($flag = null) { return $this->_getSubject()->isPartialLoad($flag); } /** * {@inheritdoc} */ public function isPartialSave($flag = null) { return $this->_getSubject()->isPartialSave($flag); } /** * {@inheritdoc} */ public function loadAllAttributes($object = null) { return $this->_getSubject()->loadAllAttributes($object); } /** * {@inheritdoc} */ public function getSortedAttributes($setId = null) { return $this->_getSubject()->getSortedAttributes($setId); } /** * {@inheritdoc} */ public function attributesCompare($firstAttribute, $secondAttribute) { return $this->_getSubject()->attributesCompare($firstAttribute, $secondAttribute); } /** * {@inheritdoc} */ public function walkAttributes($partMethod, array $args = [], $collectExceptionMessages = null) { return $this->_getSubject()->walkAttributes($partMethod, $args, $collectExceptionMessages); } /** * {@inheritdoc} */ public function getAttributesByCode() { return $this->_getSubject()->getAttributesByCode(); } /** * {@inheritdoc} */ public function getAttributesByTable() { return $this->_getSubject()->getAttributesByTable(); } /** * {@inheritdoc} */ public function getEntityTable() { return $this->_getSubject()->getEntityTable(); } /** * {@inheritdoc} */ public function getLinkField() { return $this->_getSubject()->getLinkField(); } /** * {@inheritdoc} */ public function getEntityIdField() { return $this->_getSubject()->getEntityIdField(); } /** * {@inheritdoc} */ public function getValueEntityIdField() { return $this->_getSubject()->getValueEntityIdField(); } /** * {@inheritdoc} */ public function getValueTablePrefix() { return $this->_getSubject()->getValueTablePrefix(); } /** * {@inheritdoc} */ public function getEntityTablePrefix() { return $this->_getSubject()->getEntityTablePrefix(); } /** * {@inheritdoc} */ public function isAttributeStatic($attribute) { return $this->_getSubject()->isAttributeStatic($attribute); } /** * {@inheritdoc} */ public function validate($object) { return $this->_getSubject()->validate($object); } /** * {@inheritdoc} */ public function setNewIncrementId(\Magento\Framework\DataObject $object) { return $this->_getSubject()->setNewIncrementId($object); } /** * {@inheritdoc} */ public function checkAttributeUniqueValue(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute, $object) { return $this->_getSubject()->checkAttributeUniqueValue($attribute, $object); } /** * {@inheritdoc} */ public function getDefaultAttributeSourceModel() { return $this->_getSubject()->getDefaultAttributeSourceModel(); } /** * {@inheritdoc} */ public function saveAttribute(\Magento\Framework\DataObject $object, $attributeCode) { return $this->_getSubject()->saveAttribute($object, $attributeCode); } /** * {@inheritdoc} */ public function getDefaultAttributes() { return $this->_getSubject()->getDefaultAttributes(); } /** * {@inheritdoc} */ public function afterLoad(\Magento\Framework\DataObject $object) { return $this->_getSubject()->afterLoad($object); } /** * {@inheritdoc} */ public function beforeSave(\Magento\Framework\DataObject $object) { return $this->_getSubject()->beforeSave($object); } /** * {@inheritdoc} */ public function afterSave(\Magento\Framework\DataObject $object) { return $this->_getSubject()->afterSave($object); } /** * {@inheritdoc} */ public function beforeDelete(\Magento\Framework\DataObject $object) { return $this->_getSubject()->beforeDelete($object); } /** * {@inheritdoc} */ public function afterDelete(\Magento\Framework\DataObject $object) { return $this->_getSubject()->afterDelete($object); } /** * {@inheritdoc} */ public function beginTransaction() { return $this->_getSubject()->beginTransaction(); } /** * {@inheritdoc} */ public function addCommitCallback($callback) { return $this->_getSubject()->addCommitCallback($callback); } /** * {@inheritdoc} */ public function commit() { return $this->_getSubject()->commit(); } /** * {@inheritdoc} */ public function rollBack() { return $this->_getSubject()->rollBack(); } /** * {@inheritdoc} */ public function getValidationRulesBeforeSave() { return $this->_getSubject()->getValidationRulesBeforeSave(); } } generated/code/Magento/Catalog/Model/ResourceModel/Eav/0000775000175100017510000000000013545561736024004 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/ResourceModel/Eav/AttributeFactory.php0000664000175100017510000000220713545561736030011 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Model\ResourceModel\Eav; /** * Factory class for @see \Magento\Catalog\Model\ResourceModel\Eav\Attribute */ class AttributeFactory { /** * 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\\Catalog\\Model\\ResourceModel\\Eav\\Attribute') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Catalog\Model\ResourceModel\Eav\Attribute */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Catalog/Model/Product/0000775000175100017510000000000013545561736022141 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/Product/ReservedAttributeList/0000775000175100017510000000000013545561733026435 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/Product/ReservedAttributeList/Proxy.php0000664000175100017510000000454113545561733030273 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Model\Product\ReservedAttributeList; /** * Proxy class for @see \Magento\Catalog\Model\Product\ReservedAttributeList */ class Proxy extends \Magento\Catalog\Model\Product\ReservedAttributeList implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Catalog\Model\Product\ReservedAttributeList */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Catalog\\Model\\Product\\ReservedAttributeList', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Catalog\Model\Product\ReservedAttributeList */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function isReservedAttribute($attribute) { return $this->_getSubject()->isReservedAttribute($attribute); } } generated/code/Magento/Catalog/Model/Product/Attribute/0000775000175100017510000000000013545561736024104 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/Product/Attribute/Repository/0000775000175100017510000000000013545561736026263 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/Product/Attribute/Repository/Interceptor.php0000664000175100017510000000656113545561736031302 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Model\Product\Attribute\Repository; /** * Interceptor class for @see \Magento\Catalog\Model\Product\Attribute\Repository */ class Interceptor extends \Magento\Catalog\Model\Product\Attribute\Repository implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Catalog\Model\ResourceModel\Attribute $attributeResource, \Magento\Catalog\Helper\Product $productHelper, \Magento\Framework\Filter\FilterManager $filterManager, \Magento\Eav\Api\AttributeRepositoryInterface $eavAttributeRepository, \Magento\Eav\Model\Config $eavConfig, \Magento\Eav\Model\Adminhtml\System\Config\Source\Inputtype\ValidatorFactory $validatorFactory, \Magento\Framework\Api\SearchCriteriaBuilder $searchCriteriaBuilder) { $this->___init(); parent::__construct($attributeResource, $productHelper, $filterManager, $eavAttributeRepository, $eavConfig, $validatorFactory, $searchCriteriaBuilder); } /** * {@inheritdoc} */ public function get($attributeCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'get'); if (!$pluginInfo) { return parent::get($attributeCode); } else { return $this->___callPlugins('get', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getList(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getList'); if (!$pluginInfo) { return parent::getList($searchCriteria); } else { return $this->___callPlugins('getList', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save(\Magento\Catalog\Api\Data\ProductAttributeInterface $attribute) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($attribute); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete(\Magento\Catalog\Api\Data\ProductAttributeInterface $attribute) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($attribute); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function deleteById($attributeCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'deleteById'); if (!$pluginInfo) { return parent::deleteById($attributeCode); } else { return $this->___callPlugins('deleteById', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCustomAttributesMetadata($dataObjectClassName = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCustomAttributesMetadata'); if (!$pluginInfo) { return parent::getCustomAttributesMetadata($dataObjectClassName); } else { return $this->___callPlugins('getCustomAttributesMetadata', func_get_args(), $pluginInfo); } } } generated/code/Magento/Catalog/Model/Session/0000775000175100017510000000000013545561736022144 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/Session/Proxy.php0000664000175100017510000001140513545561736023777 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Model\Session; /** * Proxy class for @see \Magento\Catalog\Model\Session */ class Proxy extends \Magento\Catalog\Model\Session implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Catalog\Model\Session */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Catalog\\Model\\Session', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Catalog\Model\Session */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function writeClose() { return $this->_getSubject()->writeClose(); } /** * {@inheritdoc} */ public function __call($method, $args) { return $this->_getSubject()->__call($method, $args); } /** * {@inheritdoc} */ public function start() { return $this->_getSubject()->start(); } /** * {@inheritdoc} */ public function isSessionExists() { return $this->_getSubject()->isSessionExists(); } /** * {@inheritdoc} */ public function getData($key = '', $clear = false) { return $this->_getSubject()->getData($key, $clear); } /** * {@inheritdoc} */ public function getSessionId() { return $this->_getSubject()->getSessionId(); } /** * {@inheritdoc} */ public function getName() { return $this->_getSubject()->getName(); } /** * {@inheritdoc} */ public function setName($name) { return $this->_getSubject()->setName($name); } /** * {@inheritdoc} */ public function destroy(?array $options = null) { return $this->_getSubject()->destroy($options); } /** * {@inheritdoc} */ public function clearStorage() { return $this->_getSubject()->clearStorage(); } /** * {@inheritdoc} */ public function getCookieDomain() { return $this->_getSubject()->getCookieDomain(); } /** * {@inheritdoc} */ public function getCookiePath() { return $this->_getSubject()->getCookiePath(); } /** * {@inheritdoc} */ public function getCookieLifetime() { return $this->_getSubject()->getCookieLifetime(); } /** * {@inheritdoc} */ public function setSessionId($sessionId) { return $this->_getSubject()->setSessionId($sessionId); } /** * {@inheritdoc} */ public function getSessionIdForHost($urlHost) { return $this->_getSubject()->getSessionIdForHost($urlHost); } /** * {@inheritdoc} */ public function isValidForHost($host) { return $this->_getSubject()->isValidForHost($host); } /** * {@inheritdoc} */ public function isValidForPath($path) { return $this->_getSubject()->isValidForPath($path); } /** * {@inheritdoc} */ public function regenerateId() { return $this->_getSubject()->regenerateId(); } /** * {@inheritdoc} */ public function expireSessionCookie() { return $this->_getSubject()->expireSessionCookie(); } } generated/code/Magento/Catalog/Model/Attribute/0000775000175100017510000000000013545561736022464 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/Attribute/Config/0000775000175100017510000000000013545561736023671 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/Attribute/Config/Data/0000775000175100017510000000000013545561736024542 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/Attribute/Config/Data/Proxy.php0000664000175100017510000000506613545561736026403 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Model\Attribute\Config\Data; /** * Proxy class for @see \Magento\Catalog\Model\Attribute\Config\Data */ class Proxy extends \Magento\Catalog\Model\Attribute\Config\Data implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Catalog\Model\Attribute\Config\Data */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Catalog\\Model\\Attribute\\Config\\Data', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Catalog\Model\Attribute\Config\Data */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function merge(array $config) { return $this->_getSubject()->merge($config); } /** * {@inheritdoc} */ public function get($path = null, $default = null) { return $this->_getSubject()->get($path, $default); } /** * {@inheritdoc} */ public function reset() { return $this->_getSubject()->reset(); } } generated/code/Magento/Catalog/Model/CategoryFactory.php0000664000175100017510000000207113545561736024337 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Model; /** * Factory class for @see \Magento\Catalog\Model\Category */ class CategoryFactory { /** * 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\\Catalog\\Model\\Category') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Catalog\Model\Category */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Catalog/Model/View/0000775000175100017510000000000013545561736021433 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/View/Asset/0000775000175100017510000000000013545561736022512 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Model/View/Asset/ImageFactory.php0000664000175100017510000000213313545561736025574 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Model\View\Asset; /** * Factory class for @see \Magento\Catalog\Model\View\Asset\Image */ class ImageFactory { /** * 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\\Catalog\\Model\\View\\Asset\\Image') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Catalog\Model\View\Asset\Image */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Catalog/Ui/0000775000175100017510000000000013545561714020032 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Ui/DataProvider/0000775000175100017510000000000013545561714022416 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Ui/DataProvider/Product/0000775000175100017510000000000013545561714024036 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Ui/DataProvider/Product/ProductCollectionFactory.php0000664000175100017510000000224713545561714031540 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Ui\DataProvider\Product; /** * Factory class for @see \Magento\Catalog\Ui\DataProvider\Product\ProductCollection */ class ProductCollectionFactory { /** * 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\\Catalog\\Ui\\DataProvider\\Product\\ProductCollection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Catalog\Ui\DataProvider\Product\ProductCollection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Catalog/Api/0000775000175100017510000000000013545561736020172 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Api/ProductRepositoryInterface/0000775000175100017510000000000013545561736025533 5ustar webmasterwebmastergenerated/code/Magento/Catalog/Api/ProductRepositoryInterface/Proxy.php0000664000175100017510000000651213545561736027371 0ustar webmasterwebmaster<?php namespace Magento\Catalog\Api\ProductRepositoryInterface; /** * Proxy class for @see \Magento\Catalog\Api\ProductRepositoryInterface */ class Proxy implements \Magento\Catalog\Api\ProductRepositoryInterface, \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Catalog\Api\ProductRepositoryInterface */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Catalog\\Api\\ProductRepositoryInterface', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Catalog\Api\ProductRepositoryInterface */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function save(\Magento\Catalog\Api\Data\ProductInterface $product, $saveOptions = false) { return $this->_getSubject()->save($product, $saveOptions); } /** * {@inheritdoc} */ public function get($sku, $editMode = false, $storeId = null, $forceReload = false) { return $this->_getSubject()->get($sku, $editMode, $storeId, $forceReload); } /** * {@inheritdoc} */ public function getById($productId, $editMode = false, $storeId = null, $forceReload = false) { return $this->_getSubject()->getById($productId, $editMode, $storeId, $forceReload); } /** * {@inheritdoc} */ public function delete(\Magento\Catalog\Api\Data\ProductInterface $product) { return $this->_getSubject()->delete($product); } /** * {@inheritdoc} */ public function deleteById($sku) { return $this->_getSubject()->deleteById($sku); } /** * {@inheritdoc} */ public function getList(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria) { return $this->_getSubject()->getList($searchCriteria); } } generated/code/Magento/Paypal/0000775000175100017510000000000013545561714017331 5ustar webmasterwebmastergenerated/code/Magento/Paypal/Model/0000775000175100017510000000000013545561714020371 5ustar webmasterwebmastergenerated/code/Magento/Paypal/Model/PayflowlinkFactory.php0000664000175100017510000000210113545561714024723 0ustar webmasterwebmaster<?php namespace Magento\Paypal\Model; /** * Factory class for @see \Magento\Paypal\Model\Payflowlink */ class PayflowlinkFactory { /** * 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\\Paypal\\Model\\Payflowlink') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Paypal\Model\Payflowlink */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Paypal/Model/ProFactory.php0000664000175100017510000000204113545561714023167 0ustar webmasterwebmaster<?php namespace Magento\Paypal\Model; /** * Factory class for @see \Magento\Paypal\Model\Pro */ class ProFactory { /** * 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\\Paypal\\Model\\Pro') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Paypal\Model\Pro */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Payment/0000775000175100017510000000000013545561714017520 5ustar webmasterwebmastergenerated/code/Magento/Payment/Model/0000775000175100017510000000000013545561714020560 5ustar webmasterwebmastergenerated/code/Magento/Payment/Model/Method/0000775000175100017510000000000013545561714022000 5ustar webmasterwebmastergenerated/code/Magento/Payment/Model/Method/ConfigInterfaceFactory.php0000664000175100017510000000216213545561714027070 0ustar webmasterwebmaster<?php namespace Magento\Payment\Model\Method; /** * Factory class for @see \Magento\Payment\Model\Method\ConfigInterface */ class ConfigInterfaceFactory { /** * 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\\Payment\\Model\\Method\\ConfigInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Payment\Model\Method\ConfigInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Ui/0000775000175100017510000000000013545561714016460 5ustar webmasterwebmastergenerated/code/Magento/Ui/Config/0000775000175100017510000000000013545561714017665 5ustar webmasterwebmastergenerated/code/Magento/Ui/Config/ConverterInterface/0000775000175100017510000000000013545561714023455 5ustar webmasterwebmastergenerated/code/Magento/Ui/Config/ConverterInterface/Proxy.php0000664000175100017510000000437213545561714025315 0ustar webmasterwebmaster<?php namespace Magento\Ui\Config\ConverterInterface; /** * Proxy class for @see \Magento\Ui\Config\ConverterInterface */ class Proxy implements \Magento\Ui\Config\ConverterInterface, \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Ui\Config\ConverterInterface */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Ui\\Config\\ConverterInterface', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Ui\Config\ConverterInterface */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function convert(\DOMNode $node, array $data) { return $this->_getSubject()->convert($node, $data); } } generated/code/Magento/Swatches/0000775000175100017510000000000013545561714017664 5ustar webmasterwebmastergenerated/code/Magento/Swatches/Block/0000775000175100017510000000000013545561714020716 5ustar webmasterwebmastergenerated/code/Magento/Swatches/Block/Adminhtml/0000775000175100017510000000000013545561714022633 5ustar webmasterwebmastergenerated/code/Magento/Swatches/Block/Adminhtml/Product/0000775000175100017510000000000013545561714024253 5ustar webmasterwebmastergenerated/code/Magento/Swatches/Block/Adminhtml/Product/Attribute/0000775000175100017510000000000013545561714026216 5ustar webmasterwebmastergenerated/code/Magento/Swatches/Block/Adminhtml/Product/Attribute/Edit/0000775000175100017510000000000013545561714027103 5ustar webmasterwebmastergenerated/code/Magento/Swatches/Block/Adminhtml/Product/Attribute/Edit/FormFactory.php0000664000175100017510000000226513545561714032054 0ustar webmasterwebmaster<?php namespace Magento\Swatches\Block\Adminhtml\Product\Attribute\Edit; /** * Factory class for @see \Magento\Swatches\Block\Adminhtml\Product\Attribute\Edit\Form */ class FormFactory { /** * 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\\Swatches\\Block\\Adminhtml\\Product\\Attribute\\Edit\\Form') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Swatches\Block\Adminhtml\Product\Attribute\Edit\Form */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Indexer/0000775000175100017510000000000013545561724017502 5ustar webmasterwebmastergenerated/code/Magento/Indexer/Model/0000775000175100017510000000000013545561736020545 5ustar webmasterwebmastergenerated/code/Magento/Indexer/Model/ResourceModel/0000775000175100017510000000000013545561724023312 5ustar webmasterwebmastergenerated/code/Magento/Indexer/Model/ResourceModel/Indexer/0000775000175100017510000000000013545561724024710 5ustar webmasterwebmastergenerated/code/Magento/Indexer/Model/ResourceModel/Indexer/State/0000775000175100017510000000000013545561724025770 5ustar webmasterwebmastergenerated/code/Magento/Indexer/Model/ResourceModel/Indexer/State/CollectionFactory.php0000664000175100017510000000226413545561724032130 0ustar webmasterwebmaster<?php namespace Magento\Indexer\Model\ResourceModel\Indexer\State; /** * Factory class for @see \Magento\Indexer\Model\ResourceModel\Indexer\State\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\\Indexer\\Model\\ResourceModel\\Indexer\\State\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Indexer\Model\ResourceModel\Indexer\State\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Indexer/Model/Config/0000775000175100017510000000000013545561724021747 5ustar webmasterwebmastergenerated/code/Magento/Indexer/Model/Config/Data/0000775000175100017510000000000013545561736022623 5ustar webmasterwebmastergenerated/code/Magento/Indexer/Model/Config/Data/Interceptor.php0000664000175100017510000000337213545561724025634 0ustar webmasterwebmaster<?php namespace Magento\Indexer\Model\Config\Data; /** * Interceptor class for @see \Magento\Indexer\Model\Config\Data */ class Interceptor extends \Magento\Indexer\Model\Config\Data implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Indexer\Config\Reader $reader, \Magento\Framework\Config\CacheInterface $cache, \Magento\Indexer\Model\ResourceModel\Indexer\State\Collection $stateCollection, $cacheId = 'indexer_config', ?\Magento\Framework\Serialize\SerializerInterface $serializer = null) { $this->___init(); parent::__construct($reader, $cache, $stateCollection, $cacheId, $serializer); } /** * {@inheritdoc} */ public function merge(array $config) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'merge'); if (!$pluginInfo) { return parent::merge($config); } else { return $this->___callPlugins('merge', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function get($path = null, $default = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'get'); if (!$pluginInfo) { return parent::get($path, $default); } else { return $this->___callPlugins('get', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function reset() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'reset'); if (!$pluginInfo) { return parent::reset(); } else { return $this->___callPlugins('reset', func_get_args(), $pluginInfo); } } } generated/code/Magento/Indexer/Model/Config/Data/Proxy.php0000664000175100017510000000477113545561736024466 0ustar webmasterwebmaster<?php namespace Magento\Indexer\Model\Config\Data; /** * Proxy class for @see \Magento\Indexer\Model\Config\Data */ class Proxy extends \Magento\Indexer\Model\Config\Data implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Indexer\Model\Config\Data */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Indexer\\Model\\Config\\Data', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Indexer\Model\Config\Data */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function merge(array $config) { return $this->_getSubject()->merge($config); } /** * {@inheritdoc} */ public function get($path = null, $default = null) { return $this->_getSubject()->get($path, $default); } /** * {@inheritdoc} */ public function reset() { return $this->_getSubject()->reset(); } } generated/code/Magento/Indexer/Model/Indexer/0000775000175100017510000000000013545561736022143 5ustar webmasterwebmastergenerated/code/Magento/Indexer/Model/Indexer/CollectionFactory.php0000664000175100017510000000214213545561735026275 0ustar webmasterwebmaster<?php namespace Magento\Indexer\Model\Indexer; /** * Factory class for @see \Magento\Indexer\Model\Indexer\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\\Indexer\\Model\\Indexer\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Indexer\Model\Indexer\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Indexer/Model/Indexer/StateFactory.php0000664000175100017510000000211613545561736025264 0ustar webmasterwebmaster<?php namespace Magento\Indexer\Model\Indexer; /** * Factory class for @see \Magento\Indexer\Model\Indexer\State */ class StateFactory { /** * 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\\Indexer\\Model\\Indexer\\State') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Indexer\Model\Indexer\State */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Indexer/Model/Mview/0000775000175100017510000000000013545561736021634 5ustar webmasterwebmastergenerated/code/Magento/Indexer/Model/Mview/View/0000775000175100017510000000000013545561736022546 5ustar webmasterwebmastergenerated/code/Magento/Indexer/Model/Mview/View/State/0000775000175100017510000000000013545561736023626 5ustar webmasterwebmastergenerated/code/Magento/Indexer/Model/Mview/View/State/Interceptor.php0000664000175100017510000006363013545561736026645 0ustar webmasterwebmaster<?php namespace Magento\Indexer\Model\Mview\View\State; /** * Interceptor class for @see \Magento\Indexer\Model\Mview\View\State */ class Interceptor extends \Magento\Indexer\Model\Mview\View\State implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\Indexer\Model\ResourceModel\Mview\View\State $resource, \Magento\Indexer\Model\ResourceModel\Mview\View\State\Collection $resourceCollection, array $data = []) { $this->___init(); parent::__construct($context, $registry, $resource, $resourceCollection, $data); } /** * {@inheritdoc} */ public function loadByView($viewId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'loadByView'); if (!$pluginInfo) { return parent::loadByView($viewId); } else { return $this->___callPlugins('loadByView', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave(); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getViewId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getViewId'); if (!$pluginInfo) { return parent::getViewId(); } else { return $this->___callPlugins('getViewId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getMode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMode'); if (!$pluginInfo) { return parent::getMode(); } else { return $this->___callPlugins('getMode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setMode($mode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setMode'); if (!$pluginInfo) { return parent::setMode($mode); } else { return $this->___callPlugins('setMode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStatus() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStatus'); if (!$pluginInfo) { return parent::getStatus(); } else { return $this->___callPlugins('getStatus', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setStatus($status) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setStatus'); if (!$pluginInfo) { return parent::setStatus($status); } else { return $this->___callPlugins('setStatus', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getUpdated() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUpdated'); if (!$pluginInfo) { return parent::getUpdated(); } else { return $this->___callPlugins('getUpdated', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setUpdated($updated) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setUpdated'); if (!$pluginInfo) { return parent::setUpdated($updated); } else { return $this->___callPlugins('setUpdated', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getVersionId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getVersionId'); if (!$pluginInfo) { return parent::getVersionId(); } else { return $this->___callPlugins('getVersionId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setVersionId($versionId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setVersionId'); if (!$pluginInfo) { return parent::setVersionId($versionId); } else { return $this->___callPlugins('setVersionId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIdFieldName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIdFieldName'); if (!$pluginInfo) { return parent::setIdFieldName($name); } else { return $this->___callPlugins('setIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId'); if (!$pluginInfo) { return parent::getId(); } else { return $this->___callPlugins('getId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setId($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setId'); if (!$pluginInfo) { return parent::setId($value); } else { return $this->___callPlugins('setId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDeleted($isDeleted = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleted'); if (!$pluginInfo) { return parent::isDeleted($isDeleted); } else { return $this->___callPlugins('isDeleted', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanges() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanges'); if (!$pluginInfo) { return parent::hasDataChanges(); } else { return $this->___callPlugins('hasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setData($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); if (!$pluginInfo) { return parent::setData($key, $value); } else { return $this->___callPlugins('setData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); if (!$pluginInfo) { return parent::unsetData($key); } else { return $this->___callPlugins('unsetData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataChanges($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataChanges'); if (!$pluginInfo) { return parent::setDataChanges($value); } else { return $this->___callPlugins('setDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOrigData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOrigData'); if (!$pluginInfo) { return parent::getOrigData($key); } else { return $this->___callPlugins('getOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setOrigData($key = null, $data = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrigData'); if (!$pluginInfo) { return parent::setOrigData($key, $data); } else { return $this->___callPlugins('setOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function dataHasChangedFor($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dataHasChangedFor'); if (!$pluginInfo) { return parent::dataHasChangedFor($field); } else { return $this->___callPlugins('dataHasChangedFor', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceName'); if (!$pluginInfo) { return parent::getResourceName(); } else { return $this->___callPlugins('getResourceName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceCollection'); if (!$pluginInfo) { return parent::getResourceCollection(); } else { return $this->___callPlugins('getResourceCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCollection'); if (!$pluginInfo) { return parent::getCollection(); } else { return $this->___callPlugins('getCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($modelId, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($modelId, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeLoad($identifier, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeLoad'); if (!$pluginInfo) { return parent::beforeLoad($identifier, $field); } else { return $this->___callPlugins('beforeLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad(); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isSaveAllowed() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isSaveAllowed'); if (!$pluginInfo) { return parent::isSaveAllowed(); } else { return $this->___callPlugins('isSaveAllowed', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setHasDataChanges($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHasDataChanges'); if (!$pluginInfo) { return parent::setHasDataChanges($flag); } else { return $this->___callPlugins('setHasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save(); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterCommitCallback() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterCommitCallback'); if (!$pluginInfo) { return parent::afterCommitCallback(); } else { return $this->___callPlugins('afterCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isObjectNew($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isObjectNew'); if (!$pluginInfo) { return parent::isObjectNew($flag); } else { return $this->___callPlugins('isObjectNew', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validateBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateBeforeSave'); if (!$pluginInfo) { return parent::validateBeforeSave(); } else { return $this->___callPlugins('validateBeforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCacheTags() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCacheTags'); if (!$pluginInfo) { return parent::getCacheTags(); } else { return $this->___callPlugins('getCacheTags', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function cleanModelCache() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanModelCache'); if (!$pluginInfo) { return parent::cleanModelCache(); } else { return $this->___callPlugins('cleanModelCache', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave(); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete(); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete(); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete(); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDeleteCommit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDeleteCommit'); if (!$pluginInfo) { return parent::afterDeleteCommit(); } else { return $this->___callPlugins('afterDeleteCommit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResource() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); if (!$pluginInfo) { return parent::getResource(); } else { return $this->___callPlugins('getResource', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityId'); if (!$pluginInfo) { return parent::getEntityId(); } else { return $this->___callPlugins('getEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntityId($entityId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityId'); if (!$pluginInfo) { return parent::setEntityId($entityId); } else { return $this->___callPlugins('setEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clearInstance() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clearInstance'); if (!$pluginInfo) { return parent::clearInstance(); } else { return $this->___callPlugins('clearInstance', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoredData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoredData'); if (!$pluginInfo) { return parent::getStoredData(); } else { return $this->___callPlugins('getStoredData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEventPrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEventPrefix'); if (!$pluginInfo) { return parent::getEventPrefix(); } else { return $this->___callPlugins('getEventPrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addData(array $arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); if (!$pluginInfo) { return parent::addData($arr); } else { return $this->___callPlugins('addData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData($key = '', $index = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData($key, $index); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByPath($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); if (!$pluginInfo) { return parent::getDataByPath($path); } else { return $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); if (!$pluginInfo) { return parent::getDataByKey($key); } else { return $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataUsingMethod($key, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); if (!$pluginInfo) { return parent::setDataUsingMethod($key, $args); } else { return $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataUsingMethod($key, $args = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); if (!$pluginInfo) { return parent::getDataUsingMethod($key, $args); } else { return $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasData($key = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); if (!$pluginInfo) { return parent::hasData($key); } else { return $this->___callPlugins('hasData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray($keys); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); if (!$pluginInfo) { return parent::convertToArray($keys); } else { return $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); if (!$pluginInfo) { return parent::toXml($keys, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('toXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); if (!$pluginInfo) { return parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); if (!$pluginInfo) { return parent::toJson($keys); } else { return $this->___callPlugins('toJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); if (!$pluginInfo) { return parent::convertToJson($keys); } else { return $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toString($format = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); if (!$pluginInfo) { return parent::toString($format); } else { return $this->___callPlugins('toString', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function __call($method, $args) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); if (!$pluginInfo) { return parent::__call($method, $args); } else { return $this->___callPlugins('__call', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isEmpty() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); if (!$pluginInfo) { return parent::isEmpty(); } else { return $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); if (!$pluginInfo) { return parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); } else { return $this->___callPlugins('serialize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function debug($data = null, &$objects = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); if (!$pluginInfo) { return parent::debug($data, $objects); } else { return $this->___callPlugins('debug', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetSet($offset, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); if (!$pluginInfo) { return parent::offsetSet($offset, $value); } else { return $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetExists($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); if (!$pluginInfo) { return parent::offsetExists($offset); } else { return $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetUnset($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); if (!$pluginInfo) { return parent::offsetUnset($offset); } else { return $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetGet($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); if (!$pluginInfo) { return parent::offsetGet($offset); } else { return $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo); } } } generated/code/Magento/Store/0000775000175100017510000000000013545561724017200 5ustar webmasterwebmastergenerated/code/Magento/Store/Model/0000775000175100017510000000000013545561747020245 5ustar webmasterwebmastergenerated/code/Magento/Store/Model/Group/0000775000175100017510000000000013545561724021334 5ustar webmasterwebmastergenerated/code/Magento/Store/Model/Group/Interceptor.php0000664000175100017510000010534313545561724024351 0ustar webmasterwebmaster<?php namespace Magento\Store\Model\Group; /** * Interceptor class for @see \Magento\Store\Model\Group */ class Interceptor extends \Magento\Store\Model\Group implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory, \Magento\Framework\Api\AttributeValueFactory $customAttributeFactory, \Magento\Config\Model\ResourceModel\Config\Data $configDataResource, \Magento\Store\Model\ResourceModel\Store\CollectionFactory $storeListFactory, \Magento\Store\Model\StoreManagerInterface $storeManager, ?\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, ?\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], ?\Magento\Framework\Event\ManagerInterface $eventManager = null) { $this->___init(); parent::__construct($context, $registry, $extensionFactory, $customAttributeFactory, $configDataResource, $storeListFactory, $storeManager, $resource, $resourceCollection, $data, $eventManager); } /** * {@inheritdoc} */ public function setStores($stores) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setStores'); if (!$pluginInfo) { return parent::setStores($stores); } else { return $this->___callPlugins('setStores', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoreCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoreCollection'); if (!$pluginInfo) { return parent::getStoreCollection(); } else { return $this->___callPlugins('getStoreCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStores() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStores'); if (!$pluginInfo) { return parent::getStores(); } else { return $this->___callPlugins('getStores', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoreIds() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoreIds'); if (!$pluginInfo) { return parent::getStoreIds(); } else { return $this->___callPlugins('getStoreIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoreCodes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoreCodes'); if (!$pluginInfo) { return parent::getStoreCodes(); } else { return $this->___callPlugins('getStoreCodes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoresCount() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoresCount'); if (!$pluginInfo) { return parent::getStoresCount(); } else { return $this->___callPlugins('getStoresCount', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultStore() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultStore'); if (!$pluginInfo) { return parent::getDefaultStore(); } else { return $this->___callPlugins('getDefaultStore', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultStoreByLocale($locale) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultStoreByLocale'); if (!$pluginInfo) { return parent::getDefaultStoreByLocale($locale); } else { return $this->___callPlugins('getDefaultStoreByLocale', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoresByLocale($locale) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoresByLocale'); if (!$pluginInfo) { return parent::getStoresByLocale($locale); } else { return $this->___callPlugins('getStoresByLocale', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setWebsite(\Magento\Store\Model\Website $website) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setWebsite'); if (!$pluginInfo) { return parent::setWebsite($website); } else { return $this->___callPlugins('setWebsite', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getWebsite() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getWebsite'); if (!$pluginInfo) { return parent::getWebsite(); } else { return $this->___callPlugins('getWebsite', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isCanDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isCanDelete'); if (!$pluginInfo) { return parent::isCanDelete(); } else { return $this->___callPlugins('isCanDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultStoreId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultStoreId'); if (!$pluginInfo) { return parent::getDefaultStoreId(); } else { return $this->___callPlugins('getDefaultStoreId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDefaultStoreId($defaultStoreId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDefaultStoreId'); if (!$pluginInfo) { return parent::setDefaultStoreId($defaultStoreId); } else { return $this->___callPlugins('setDefaultStoreId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getRootCategoryId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getRootCategoryId'); if (!$pluginInfo) { return parent::getRootCategoryId(); } else { return $this->___callPlugins('getRootCategoryId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setRootCategoryId($rootCategoryId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setRootCategoryId'); if (!$pluginInfo) { return parent::setRootCategoryId($rootCategoryId); } else { return $this->___callPlugins('setRootCategoryId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getWebsiteId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getWebsiteId'); if (!$pluginInfo) { return parent::getWebsiteId(); } else { return $this->___callPlugins('getWebsiteId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setWebsiteId($websiteId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setWebsiteId'); if (!$pluginInfo) { return parent::setWebsiteId($websiteId); } else { return $this->___callPlugins('setWebsiteId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete(); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete(); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave(); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isReadOnly($value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isReadOnly'); if (!$pluginInfo) { return parent::isReadOnly($value); } else { return $this->___callPlugins('isReadOnly', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdentities() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdentities'); if (!$pluginInfo) { return parent::getIdentities(); } else { return $this->___callPlugins('getIdentities', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getName'); if (!$pluginInfo) { return parent::getName(); } else { return $this->___callPlugins('getName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setName'); if (!$pluginInfo) { return parent::setName($name); } else { return $this->___callPlugins('setName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCode'); if (!$pluginInfo) { return parent::getCode(); } else { return $this->___callPlugins('getCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCode($code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCode'); if (!$pluginInfo) { return parent::setCode($code); } else { return $this->___callPlugins('setCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getExtensionAttributes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getExtensionAttributes'); if (!$pluginInfo) { return parent::getExtensionAttributes(); } else { return $this->___callPlugins('getExtensionAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setExtensionAttributes(\Magento\Store\Api\Data\GroupExtensionInterface $extensionAttributes) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setExtensionAttributes'); if (!$pluginInfo) { return parent::setExtensionAttributes($extensionAttributes); } else { return $this->___callPlugins('setExtensionAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getScopeType() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getScopeType'); if (!$pluginInfo) { return parent::getScopeType(); } else { return $this->___callPlugins('getScopeType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getScopeTypeName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getScopeTypeName'); if (!$pluginInfo) { return parent::getScopeTypeName(); } else { return $this->___callPlugins('getScopeTypeName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCustomAttributes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCustomAttributes'); if (!$pluginInfo) { return parent::getCustomAttributes(); } else { return $this->___callPlugins('getCustomAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCustomAttribute($attributeCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCustomAttribute'); if (!$pluginInfo) { return parent::getCustomAttribute($attributeCode); } else { return $this->___callPlugins('getCustomAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCustomAttributes(array $attributes) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCustomAttributes'); if (!$pluginInfo) { return parent::setCustomAttributes($attributes); } else { return $this->___callPlugins('setCustomAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCustomAttribute($attributeCode, $attributeValue) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCustomAttribute'); if (!$pluginInfo) { return parent::setCustomAttribute($attributeCode, $attributeValue); } else { return $this->___callPlugins('setCustomAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setData($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); if (!$pluginInfo) { return parent::setData($key, $value); } else { return $this->___callPlugins('setData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); if (!$pluginInfo) { return parent::unsetData($key); } else { return $this->___callPlugins('unsetData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData($key = '', $index = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData($key, $index); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setId($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setId'); if (!$pluginInfo) { return parent::setId($value); } else { return $this->___callPlugins('setId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIdFieldName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIdFieldName'); if (!$pluginInfo) { return parent::setIdFieldName($name); } else { return $this->___callPlugins('setIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId'); if (!$pluginInfo) { return parent::getId(); } else { return $this->___callPlugins('getId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDeleted($isDeleted = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleted'); if (!$pluginInfo) { return parent::isDeleted($isDeleted); } else { return $this->___callPlugins('isDeleted', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanges() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanges'); if (!$pluginInfo) { return parent::hasDataChanges(); } else { return $this->___callPlugins('hasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataChanges($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataChanges'); if (!$pluginInfo) { return parent::setDataChanges($value); } else { return $this->___callPlugins('setDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOrigData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOrigData'); if (!$pluginInfo) { return parent::getOrigData($key); } else { return $this->___callPlugins('getOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setOrigData($key = null, $data = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrigData'); if (!$pluginInfo) { return parent::setOrigData($key, $data); } else { return $this->___callPlugins('setOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function dataHasChangedFor($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dataHasChangedFor'); if (!$pluginInfo) { return parent::dataHasChangedFor($field); } else { return $this->___callPlugins('dataHasChangedFor', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceName'); if (!$pluginInfo) { return parent::getResourceName(); } else { return $this->___callPlugins('getResourceName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceCollection'); if (!$pluginInfo) { return parent::getResourceCollection(); } else { return $this->___callPlugins('getResourceCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCollection'); if (!$pluginInfo) { return parent::getCollection(); } else { return $this->___callPlugins('getCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($modelId, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($modelId, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeLoad($identifier, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeLoad'); if (!$pluginInfo) { return parent::beforeLoad($identifier, $field); } else { return $this->___callPlugins('beforeLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad(); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isSaveAllowed() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isSaveAllowed'); if (!$pluginInfo) { return parent::isSaveAllowed(); } else { return $this->___callPlugins('isSaveAllowed', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setHasDataChanges($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHasDataChanges'); if (!$pluginInfo) { return parent::setHasDataChanges($flag); } else { return $this->___callPlugins('setHasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save(); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterCommitCallback() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterCommitCallback'); if (!$pluginInfo) { return parent::afterCommitCallback(); } else { return $this->___callPlugins('afterCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isObjectNew($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isObjectNew'); if (!$pluginInfo) { return parent::isObjectNew($flag); } else { return $this->___callPlugins('isObjectNew', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave(); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validateBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateBeforeSave'); if (!$pluginInfo) { return parent::validateBeforeSave(); } else { return $this->___callPlugins('validateBeforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCacheTags() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCacheTags'); if (!$pluginInfo) { return parent::getCacheTags(); } else { return $this->___callPlugins('getCacheTags', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function cleanModelCache() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanModelCache'); if (!$pluginInfo) { return parent::cleanModelCache(); } else { return $this->___callPlugins('cleanModelCache', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete(); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDeleteCommit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDeleteCommit'); if (!$pluginInfo) { return parent::afterDeleteCommit(); } else { return $this->___callPlugins('afterDeleteCommit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResource() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); if (!$pluginInfo) { return parent::getResource(); } else { return $this->___callPlugins('getResource', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityId'); if (!$pluginInfo) { return parent::getEntityId(); } else { return $this->___callPlugins('getEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntityId($entityId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityId'); if (!$pluginInfo) { return parent::setEntityId($entityId); } else { return $this->___callPlugins('setEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clearInstance() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clearInstance'); if (!$pluginInfo) { return parent::clearInstance(); } else { return $this->___callPlugins('clearInstance', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoredData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoredData'); if (!$pluginInfo) { return parent::getStoredData(); } else { return $this->___callPlugins('getStoredData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEventPrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEventPrefix'); if (!$pluginInfo) { return parent::getEventPrefix(); } else { return $this->___callPlugins('getEventPrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addData(array $arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); if (!$pluginInfo) { return parent::addData($arr); } else { return $this->___callPlugins('addData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByPath($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); if (!$pluginInfo) { return parent::getDataByPath($path); } else { return $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); if (!$pluginInfo) { return parent::getDataByKey($key); } else { return $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataUsingMethod($key, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); if (!$pluginInfo) { return parent::setDataUsingMethod($key, $args); } else { return $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataUsingMethod($key, $args = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); if (!$pluginInfo) { return parent::getDataUsingMethod($key, $args); } else { return $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasData($key = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); if (!$pluginInfo) { return parent::hasData($key); } else { return $this->___callPlugins('hasData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray($keys); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); if (!$pluginInfo) { return parent::convertToArray($keys); } else { return $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); if (!$pluginInfo) { return parent::toXml($keys, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('toXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); if (!$pluginInfo) { return parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); if (!$pluginInfo) { return parent::toJson($keys); } else { return $this->___callPlugins('toJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); if (!$pluginInfo) { return parent::convertToJson($keys); } else { return $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toString($format = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); if (!$pluginInfo) { return parent::toString($format); } else { return $this->___callPlugins('toString', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function __call($method, $args) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); if (!$pluginInfo) { return parent::__call($method, $args); } else { return $this->___callPlugins('__call', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isEmpty() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); if (!$pluginInfo) { return parent::isEmpty(); } else { return $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); if (!$pluginInfo) { return parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); } else { return $this->___callPlugins('serialize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function debug($data = null, &$objects = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); if (!$pluginInfo) { return parent::debug($data, $objects); } else { return $this->___callPlugins('debug', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetSet($offset, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); if (!$pluginInfo) { return parent::offsetSet($offset, $value); } else { return $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetExists($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); if (!$pluginInfo) { return parent::offsetExists($offset); } else { return $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetUnset($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); if (!$pluginInfo) { return parent::offsetUnset($offset); } else { return $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetGet($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); if (!$pluginInfo) { return parent::offsetGet($offset); } else { return $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo); } } } generated/code/Magento/Store/Model/ResourceModel/0000775000175100017510000000000013545561736023013 5ustar webmasterwebmastergenerated/code/Magento/Store/Model/ResourceModel/Group/0000775000175100017510000000000013545561736024107 5ustar webmasterwebmastergenerated/code/Magento/Store/Model/ResourceModel/Group/Interceptor.php0000664000175100017510000002353713545561725027126 0ustar webmasterwebmaster<?php namespace Magento\Store\Model\ResourceModel\Group; /** * Interceptor class for @see \Magento\Store\Model\ResourceModel\Group */ class Interceptor extends \Magento\Store\Model\ResourceModel\Group implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\ResourceModel\Db\Context $context, $connectionName = null) { $this->___init(); parent::__construct($context, $connectionName); } /** * {@inheritdoc} */ public function countAll($countAdmin = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'countAll'); if (!$pluginInfo) { return parent::countAll($countAdmin); } else { return $this->___callPlugins('countAll', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getMainTable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMainTable'); if (!$pluginInfo) { return parent::getMainTable(); } else { return $this->___callPlugins('getMainTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTable($tableName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTable'); if (!$pluginInfo) { return parent::getTable($tableName); } else { return $this->___callPlugins('getTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConnection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConnection'); if (!$pluginInfo) { return parent::getConnection(); } else { return $this->___callPlugins('getConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load(\Magento\Framework\Model\AbstractModel $object, $value, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($object, $value, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($object); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($object); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addUniqueField($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addUniqueField'); if (!$pluginInfo) { return parent::addUniqueField($field); } else { return $this->___callPlugins('addUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function resetUniqueField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resetUniqueField'); if (!$pluginInfo) { return parent::resetUniqueField(); } else { return $this->___callPlugins('resetUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unserializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unserializeFields'); if (!$pluginInfo) { return parent::unserializeFields($object); } else { return $this->___callPlugins('unserializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getUniqueFields() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUniqueFields'); if (!$pluginInfo) { return parent::getUniqueFields(); } else { return $this->___callPlugins('getUniqueFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanged($object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanged'); if (!$pluginInfo) { return parent::hasDataChanged($object); } else { return $this->___callPlugins('hasDataChanged', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getChecksum($table) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getChecksum'); if (!$pluginInfo) { return parent::getChecksum($table); } else { return $this->___callPlugins('getChecksum', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad($object); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave($object); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave($object); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete($object); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete($object); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serializeFields'); if (!$pluginInfo) { return parent::serializeFields($object); } else { return $this->___callPlugins('serializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beginTransaction() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beginTransaction'); if (!$pluginInfo) { return parent::beginTransaction(); } else { return $this->___callPlugins('beginTransaction', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addCommitCallback($callback) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addCommitCallback'); if (!$pluginInfo) { return parent::addCommitCallback($callback); } else { return $this->___callPlugins('addCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function commit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'commit'); if (!$pluginInfo) { return parent::commit(); } else { return $this->___callPlugins('commit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function rollBack() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'rollBack'); if (!$pluginInfo) { return parent::rollBack(); } else { return $this->___callPlugins('rollBack', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValidationRulesBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValidationRulesBeforeSave'); if (!$pluginInfo) { return parent::getValidationRulesBeforeSave(); } else { return $this->___callPlugins('getValidationRulesBeforeSave', func_get_args(), $pluginInfo); } } } generated/code/Magento/Store/Model/ResourceModel/Group/CollectionFactory.php0000664000175100017510000000221313545561736030241 0ustar webmasterwebmaster<?php namespace Magento\Store\Model\ResourceModel\Group; /** * Factory class for @see \Magento\Store\Model\ResourceModel\Group\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\\Store\\Model\\ResourceModel\\Group\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Store\Model\ResourceModel\Group\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Store/Model/ResourceModel/Store/0000775000175100017510000000000013545561736024107 5ustar webmasterwebmastergenerated/code/Magento/Store/Model/ResourceModel/Store/CollectionFactory.php0000664000175100017510000000221313545561736030241 0ustar webmasterwebmaster<?php namespace Magento\Store\Model\ResourceModel\Store; /** * Factory class for @see \Magento\Store\Model\ResourceModel\Store\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\\Store\\Model\\ResourceModel\\Store\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Store\Model\ResourceModel\Store\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Store/Model/ResourceModel/Store/Interceptor.php0000664000175100017510000002435413545561736027126 0ustar webmasterwebmaster<?php namespace Magento\Store\Model\ResourceModel\Store; /** * Interceptor class for @see \Magento\Store\Model\ResourceModel\Store */ class Interceptor extends \Magento\Store\Model\ResourceModel\Store implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\ResourceModel\Db\Context $context, \Magento\Framework\App\Cache\Type\Config $configCacheType) { $this->___init(); parent::__construct($context, $configCacheType); } /** * {@inheritdoc} */ public function countAll($countAdmin = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'countAll'); if (!$pluginInfo) { return parent::countAll($countAdmin); } else { return $this->___callPlugins('countAll', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function readAllStores() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'readAllStores'); if (!$pluginInfo) { return parent::readAllStores(); } else { return $this->___callPlugins('readAllStores', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getMainTable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMainTable'); if (!$pluginInfo) { return parent::getMainTable(); } else { return $this->___callPlugins('getMainTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTable($tableName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTable'); if (!$pluginInfo) { return parent::getTable($tableName); } else { return $this->___callPlugins('getTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConnection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConnection'); if (!$pluginInfo) { return parent::getConnection(); } else { return $this->___callPlugins('getConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load(\Magento\Framework\Model\AbstractModel $object, $value, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($object, $value, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($object); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($object); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addUniqueField($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addUniqueField'); if (!$pluginInfo) { return parent::addUniqueField($field); } else { return $this->___callPlugins('addUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function resetUniqueField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resetUniqueField'); if (!$pluginInfo) { return parent::resetUniqueField(); } else { return $this->___callPlugins('resetUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unserializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unserializeFields'); if (!$pluginInfo) { return parent::unserializeFields($object); } else { return $this->___callPlugins('unserializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getUniqueFields() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUniqueFields'); if (!$pluginInfo) { return parent::getUniqueFields(); } else { return $this->___callPlugins('getUniqueFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanged($object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanged'); if (!$pluginInfo) { return parent::hasDataChanged($object); } else { return $this->___callPlugins('hasDataChanged', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getChecksum($table) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getChecksum'); if (!$pluginInfo) { return parent::getChecksum($table); } else { return $this->___callPlugins('getChecksum', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad($object); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave($object); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave($object); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete($object); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete($object); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serializeFields'); if (!$pluginInfo) { return parent::serializeFields($object); } else { return $this->___callPlugins('serializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beginTransaction() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beginTransaction'); if (!$pluginInfo) { return parent::beginTransaction(); } else { return $this->___callPlugins('beginTransaction', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addCommitCallback($callback) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addCommitCallback'); if (!$pluginInfo) { return parent::addCommitCallback($callback); } else { return $this->___callPlugins('addCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function commit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'commit'); if (!$pluginInfo) { return parent::commit(); } else { return $this->___callPlugins('commit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function rollBack() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'rollBack'); if (!$pluginInfo) { return parent::rollBack(); } else { return $this->___callPlugins('rollBack', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValidationRulesBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValidationRulesBeforeSave'); if (!$pluginInfo) { return parent::getValidationRulesBeforeSave(); } else { return $this->___callPlugins('getValidationRulesBeforeSave', func_get_args(), $pluginInfo); } } } generated/code/Magento/Store/Model/ResourceModel/Website/0000775000175100017510000000000013545561736024415 5ustar webmasterwebmastergenerated/code/Magento/Store/Model/ResourceModel/Website/CollectionFactory.php0000664000175100017510000000222313545561736030550 0ustar webmasterwebmaster<?php namespace Magento\Store\Model\ResourceModel\Website; /** * Factory class for @see \Magento\Store\Model\ResourceModel\Website\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\\Store\\Model\\ResourceModel\\Website\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Store\Model\ResourceModel\Website\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Store/Model/ResourceModel/Website/Interceptor.php0000664000175100017510000002522113545561736027426 0ustar webmasterwebmaster<?php namespace Magento\Store\Model\ResourceModel\Website; /** * Interceptor class for @see \Magento\Store\Model\ResourceModel\Website */ class Interceptor extends \Magento\Store\Model\ResourceModel\Website implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\ResourceModel\Db\Context $context, $connectionName = null) { $this->___init(); parent::__construct($context, $connectionName); } /** * {@inheritdoc} */ public function readAllWebsites() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'readAllWebsites'); if (!$pluginInfo) { return parent::readAllWebsites(); } else { return $this->___callPlugins('readAllWebsites', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultStoresSelect($includeDefault = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultStoresSelect'); if (!$pluginInfo) { return parent::getDefaultStoresSelect($includeDefault); } else { return $this->___callPlugins('getDefaultStoresSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function countAll($includeDefault = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'countAll'); if (!$pluginInfo) { return parent::countAll($includeDefault); } else { return $this->___callPlugins('countAll', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getMainTable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMainTable'); if (!$pluginInfo) { return parent::getMainTable(); } else { return $this->___callPlugins('getMainTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTable($tableName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTable'); if (!$pluginInfo) { return parent::getTable($tableName); } else { return $this->___callPlugins('getTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConnection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConnection'); if (!$pluginInfo) { return parent::getConnection(); } else { return $this->___callPlugins('getConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load(\Magento\Framework\Model\AbstractModel $object, $value, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($object, $value, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($object); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($object); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addUniqueField($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addUniqueField'); if (!$pluginInfo) { return parent::addUniqueField($field); } else { return $this->___callPlugins('addUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function resetUniqueField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resetUniqueField'); if (!$pluginInfo) { return parent::resetUniqueField(); } else { return $this->___callPlugins('resetUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unserializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unserializeFields'); if (!$pluginInfo) { return parent::unserializeFields($object); } else { return $this->___callPlugins('unserializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getUniqueFields() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUniqueFields'); if (!$pluginInfo) { return parent::getUniqueFields(); } else { return $this->___callPlugins('getUniqueFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanged($object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanged'); if (!$pluginInfo) { return parent::hasDataChanged($object); } else { return $this->___callPlugins('hasDataChanged', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getChecksum($table) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getChecksum'); if (!$pluginInfo) { return parent::getChecksum($table); } else { return $this->___callPlugins('getChecksum', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad($object); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave($object); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave($object); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete($object); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete($object); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serializeFields'); if (!$pluginInfo) { return parent::serializeFields($object); } else { return $this->___callPlugins('serializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beginTransaction() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beginTransaction'); if (!$pluginInfo) { return parent::beginTransaction(); } else { return $this->___callPlugins('beginTransaction', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addCommitCallback($callback) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addCommitCallback'); if (!$pluginInfo) { return parent::addCommitCallback($callback); } else { return $this->___callPlugins('addCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function commit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'commit'); if (!$pluginInfo) { return parent::commit(); } else { return $this->___callPlugins('commit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function rollBack() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'rollBack'); if (!$pluginInfo) { return parent::rollBack(); } else { return $this->___callPlugins('rollBack', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValidationRulesBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValidationRulesBeforeSave'); if (!$pluginInfo) { return parent::getValidationRulesBeforeSave(); } else { return $this->___callPlugins('getValidationRulesBeforeSave', func_get_args(), $pluginInfo); } } } generated/code/Magento/Store/Model/StoreFactory.php0000664000175100017510000000204513545561736023401 0ustar webmasterwebmaster<?php namespace Magento\Store\Model; /** * Factory class for @see \Magento\Store\Model\Store */ class StoreFactory { /** * 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\\Store\\Model\\Store') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Store\Model\Store */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Store/Model/GroupFactory.php0000664000175100017510000000204513545561736023401 0ustar webmasterwebmaster<?php namespace Magento\Store\Model; /** * Factory class for @see \Magento\Store\Model\Group */ class GroupFactory { /** * 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\\Store\\Model\\Group') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Store\Model\Group */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Store/Model/WebsiteFactory.php0000664000175100017510000000205513545561736023710 0ustar webmasterwebmaster<?php namespace Magento\Store\Model; /** * Factory class for @see \Magento\Store\Model\Website */ class WebsiteFactory { /** * 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\\Store\\Model\\Website') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Store\Model\Website */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Store/Model/StoreManagerInterface/0000775000175100017510000000000013545561736024453 5ustar webmasterwebmastergenerated/code/Magento/Store/Model/StoreManagerInterface/Proxy.php0000664000175100017510000001000013545561736026274 0ustar webmasterwebmaster<?php namespace Magento\Store\Model\StoreManagerInterface; /** * Proxy class for @see \Magento\Store\Model\StoreManagerInterface */ class Proxy implements \Magento\Store\Model\StoreManagerInterface, \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Store\Model\StoreManagerInterface */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Store\\Model\\StoreManagerInterface', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Store\Model\StoreManagerInterface */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function setIsSingleStoreModeAllowed($value) { return $this->_getSubject()->setIsSingleStoreModeAllowed($value); } /** * {@inheritdoc} */ public function hasSingleStore() { return $this->_getSubject()->hasSingleStore(); } /** * {@inheritdoc} */ public function isSingleStoreMode() { return $this->_getSubject()->isSingleStoreMode(); } /** * {@inheritdoc} */ public function getStore($storeId = null) { return $this->_getSubject()->getStore($storeId); } /** * {@inheritdoc} */ public function getStores($withDefault = false, $codeKey = false) { return $this->_getSubject()->getStores($withDefault, $codeKey); } /** * {@inheritdoc} */ public function getWebsite($websiteId = null) { return $this->_getSubject()->getWebsite($websiteId); } /** * {@inheritdoc} */ public function getWebsites($withDefault = false, $codeKey = false) { return $this->_getSubject()->getWebsites($withDefault, $codeKey); } /** * {@inheritdoc} */ public function reinitStores() { return $this->_getSubject()->reinitStores(); } /** * {@inheritdoc} */ public function getDefaultStoreView() { return $this->_getSubject()->getDefaultStoreView(); } /** * {@inheritdoc} */ public function getGroup($groupId = null) { return $this->_getSubject()->getGroup($groupId); } /** * {@inheritdoc} */ public function getGroups($withDefault = false) { return $this->_getSubject()->getGroups($withDefault); } /** * {@inheritdoc} */ public function setCurrentStore($store) { return $this->_getSubject()->setCurrentStore($store); } } generated/code/Magento/Store/Model/StoreCookieManager/0000775000175100017510000000000013545561736023764 5ustar webmasterwebmastergenerated/code/Magento/Store/Model/StoreCookieManager/Interceptor.php0000664000175100017510000000346713545561736027005 0ustar webmasterwebmaster<?php namespace Magento\Store\Model\StoreCookieManager; /** * Interceptor class for @see \Magento\Store\Model\StoreCookieManager */ class Interceptor extends \Magento\Store\Model\StoreCookieManager implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Stdlib\Cookie\CookieMetadataFactory $cookieMetadataFactory, \Magento\Framework\Stdlib\CookieManagerInterface $cookieManager) { $this->___init(); parent::__construct($cookieMetadataFactory, $cookieManager); } /** * {@inheritdoc} */ public function getStoreCodeFromCookie() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoreCodeFromCookie'); if (!$pluginInfo) { return parent::getStoreCodeFromCookie(); } else { return $this->___callPlugins('getStoreCodeFromCookie', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setStoreCookie(\Magento\Store\Api\Data\StoreInterface $store) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setStoreCookie'); if (!$pluginInfo) { return parent::setStoreCookie($store); } else { return $this->___callPlugins('setStoreCookie', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function deleteStoreCookie(\Magento\Store\Api\Data\StoreInterface $store) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'deleteStoreCookie'); if (!$pluginInfo) { return parent::deleteStoreCookie($store); } else { return $this->___callPlugins('deleteStoreCookie', func_get_args(), $pluginInfo); } } } generated/code/Magento/Store/Model/Website/0000775000175100017510000000000013545561747021647 5ustar webmasterwebmastergenerated/code/Magento/Store/Model/Website/Interceptor.php0000664000175100017510000010770313545561747024666 0ustar webmasterwebmaster<?php namespace Magento\Store\Model\Website; /** * Interceptor class for @see \Magento\Store\Model\Website */ class Interceptor extends \Magento\Store\Model\Website implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory, \Magento\Framework\Api\AttributeValueFactory $customAttributeFactory, \Magento\Config\Model\ResourceModel\Config\Data $configDataResource, \Magento\Framework\App\Config\ScopeConfigInterface $coreConfig, \Magento\Store\Model\ResourceModel\Store\CollectionFactory $storeListFactory, \Magento\Store\Model\GroupFactory $storeGroupFactory, \Magento\Store\Model\WebsiteFactory $websiteFactory, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Directory\Model\CurrencyFactory $currencyFactory, ?\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, ?\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = []) { $this->___init(); parent::__construct($context, $registry, $extensionFactory, $customAttributeFactory, $configDataResource, $coreConfig, $storeListFactory, $storeGroupFactory, $websiteFactory, $storeManager, $currencyFactory, $resource, $resourceCollection, $data); } /** * {@inheritdoc} */ public function load($id, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($id, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConfig($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConfig'); if (!$pluginInfo) { return parent::getConfig($path); } else { return $this->___callPlugins('getConfig', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setGroups($groups) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setGroups'); if (!$pluginInfo) { return parent::setGroups($groups); } else { return $this->___callPlugins('setGroups', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getGroupCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getGroupCollection'); if (!$pluginInfo) { return parent::getGroupCollection(); } else { return $this->___callPlugins('getGroupCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getGroups() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getGroups'); if (!$pluginInfo) { return parent::getGroups(); } else { return $this->___callPlugins('getGroups', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getGroupIds() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getGroupIds'); if (!$pluginInfo) { return parent::getGroupIds(); } else { return $this->___callPlugins('getGroupIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getGroupsCount() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getGroupsCount'); if (!$pluginInfo) { return parent::getGroupsCount(); } else { return $this->___callPlugins('getGroupsCount', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultGroup() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultGroup'); if (!$pluginInfo) { return parent::getDefaultGroup(); } else { return $this->___callPlugins('getDefaultGroup', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setStores($stores) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setStores'); if (!$pluginInfo) { return parent::setStores($stores); } else { return $this->___callPlugins('setStores', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoreCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoreCollection'); if (!$pluginInfo) { return parent::getStoreCollection(); } else { return $this->___callPlugins('getStoreCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStores() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStores'); if (!$pluginInfo) { return parent::getStores(); } else { return $this->___callPlugins('getStores', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoreIds() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoreIds'); if (!$pluginInfo) { return parent::getStoreIds(); } else { return $this->___callPlugins('getStoreIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoreCodes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoreCodes'); if (!$pluginInfo) { return parent::getStoreCodes(); } else { return $this->___callPlugins('getStoreCodes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoresCount() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoresCount'); if (!$pluginInfo) { return parent::getStoresCount(); } else { return $this->___callPlugins('getStoresCount', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isCanDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isCanDelete'); if (!$pluginInfo) { return parent::isCanDelete(); } else { return $this->___callPlugins('isCanDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getWebsiteGroupStore() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getWebsiteGroupStore'); if (!$pluginInfo) { return parent::getWebsiteGroupStore(); } else { return $this->___callPlugins('getWebsiteGroupStore', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultGroupId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultGroupId'); if (!$pluginInfo) { return parent::getDefaultGroupId(); } else { return $this->___callPlugins('getDefaultGroupId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDefaultGroupId($defaultGroupId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDefaultGroupId'); if (!$pluginInfo) { return parent::setDefaultGroupId($defaultGroupId); } else { return $this->___callPlugins('setDefaultGroupId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCode'); if (!$pluginInfo) { return parent::getCode(); } else { return $this->___callPlugins('getCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCode($code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCode'); if (!$pluginInfo) { return parent::setCode($code); } else { return $this->___callPlugins('setCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getName'); if (!$pluginInfo) { return parent::getName(); } else { return $this->___callPlugins('getName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setName'); if (!$pluginInfo) { return parent::setName($name); } else { return $this->___callPlugins('setName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete(); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete(); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave(); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getBaseCurrencyCode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getBaseCurrencyCode'); if (!$pluginInfo) { return parent::getBaseCurrencyCode(); } else { return $this->___callPlugins('getBaseCurrencyCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getBaseCurrency() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getBaseCurrency'); if (!$pluginInfo) { return parent::getBaseCurrency(); } else { return $this->___callPlugins('getBaseCurrency', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultStore() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultStore'); if (!$pluginInfo) { return parent::getDefaultStore(); } else { return $this->___callPlugins('getDefaultStore', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultStoresSelect($withDefault = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultStoresSelect'); if (!$pluginInfo) { return parent::getDefaultStoresSelect($withDefault); } else { return $this->___callPlugins('getDefaultStoresSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isReadOnly($value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isReadOnly'); if (!$pluginInfo) { return parent::isReadOnly($value); } else { return $this->___callPlugins('isReadOnly', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdentities() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdentities'); if (!$pluginInfo) { return parent::getIdentities(); } else { return $this->___callPlugins('getIdentities', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getScopeType() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getScopeType'); if (!$pluginInfo) { return parent::getScopeType(); } else { return $this->___callPlugins('getScopeType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getScopeTypeName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getScopeTypeName'); if (!$pluginInfo) { return parent::getScopeTypeName(); } else { return $this->___callPlugins('getScopeTypeName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getExtensionAttributes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getExtensionAttributes'); if (!$pluginInfo) { return parent::getExtensionAttributes(); } else { return $this->___callPlugins('getExtensionAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setExtensionAttributes(\Magento\Store\Api\Data\WebsiteExtensionInterface $extensionAttributes) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setExtensionAttributes'); if (!$pluginInfo) { return parent::setExtensionAttributes($extensionAttributes); } else { return $this->___callPlugins('setExtensionAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCustomAttributes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCustomAttributes'); if (!$pluginInfo) { return parent::getCustomAttributes(); } else { return $this->___callPlugins('getCustomAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCustomAttribute($attributeCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCustomAttribute'); if (!$pluginInfo) { return parent::getCustomAttribute($attributeCode); } else { return $this->___callPlugins('getCustomAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCustomAttributes(array $attributes) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCustomAttributes'); if (!$pluginInfo) { return parent::setCustomAttributes($attributes); } else { return $this->___callPlugins('setCustomAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCustomAttribute($attributeCode, $attributeValue) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCustomAttribute'); if (!$pluginInfo) { return parent::setCustomAttribute($attributeCode, $attributeValue); } else { return $this->___callPlugins('setCustomAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setData($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); if (!$pluginInfo) { return parent::setData($key, $value); } else { return $this->___callPlugins('setData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); if (!$pluginInfo) { return parent::unsetData($key); } else { return $this->___callPlugins('unsetData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData($key = '', $index = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData($key, $index); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setId($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setId'); if (!$pluginInfo) { return parent::setId($value); } else { return $this->___callPlugins('setId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIdFieldName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIdFieldName'); if (!$pluginInfo) { return parent::setIdFieldName($name); } else { return $this->___callPlugins('setIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId'); if (!$pluginInfo) { return parent::getId(); } else { return $this->___callPlugins('getId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDeleted($isDeleted = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleted'); if (!$pluginInfo) { return parent::isDeleted($isDeleted); } else { return $this->___callPlugins('isDeleted', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanges() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanges'); if (!$pluginInfo) { return parent::hasDataChanges(); } else { return $this->___callPlugins('hasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataChanges($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataChanges'); if (!$pluginInfo) { return parent::setDataChanges($value); } else { return $this->___callPlugins('setDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOrigData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOrigData'); if (!$pluginInfo) { return parent::getOrigData($key); } else { return $this->___callPlugins('getOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setOrigData($key = null, $data = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrigData'); if (!$pluginInfo) { return parent::setOrigData($key, $data); } else { return $this->___callPlugins('setOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function dataHasChangedFor($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dataHasChangedFor'); if (!$pluginInfo) { return parent::dataHasChangedFor($field); } else { return $this->___callPlugins('dataHasChangedFor', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceName'); if (!$pluginInfo) { return parent::getResourceName(); } else { return $this->___callPlugins('getResourceName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceCollection'); if (!$pluginInfo) { return parent::getResourceCollection(); } else { return $this->___callPlugins('getResourceCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCollection'); if (!$pluginInfo) { return parent::getCollection(); } else { return $this->___callPlugins('getCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeLoad($identifier, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeLoad'); if (!$pluginInfo) { return parent::beforeLoad($identifier, $field); } else { return $this->___callPlugins('beforeLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad(); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isSaveAllowed() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isSaveAllowed'); if (!$pluginInfo) { return parent::isSaveAllowed(); } else { return $this->___callPlugins('isSaveAllowed', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setHasDataChanges($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHasDataChanges'); if (!$pluginInfo) { return parent::setHasDataChanges($flag); } else { return $this->___callPlugins('setHasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save(); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterCommitCallback() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterCommitCallback'); if (!$pluginInfo) { return parent::afterCommitCallback(); } else { return $this->___callPlugins('afterCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isObjectNew($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isObjectNew'); if (!$pluginInfo) { return parent::isObjectNew($flag); } else { return $this->___callPlugins('isObjectNew', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave(); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validateBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateBeforeSave'); if (!$pluginInfo) { return parent::validateBeforeSave(); } else { return $this->___callPlugins('validateBeforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCacheTags() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCacheTags'); if (!$pluginInfo) { return parent::getCacheTags(); } else { return $this->___callPlugins('getCacheTags', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function cleanModelCache() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanModelCache'); if (!$pluginInfo) { return parent::cleanModelCache(); } else { return $this->___callPlugins('cleanModelCache', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete(); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDeleteCommit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDeleteCommit'); if (!$pluginInfo) { return parent::afterDeleteCommit(); } else { return $this->___callPlugins('afterDeleteCommit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResource() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); if (!$pluginInfo) { return parent::getResource(); } else { return $this->___callPlugins('getResource', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityId'); if (!$pluginInfo) { return parent::getEntityId(); } else { return $this->___callPlugins('getEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntityId($entityId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityId'); if (!$pluginInfo) { return parent::setEntityId($entityId); } else { return $this->___callPlugins('setEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clearInstance() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clearInstance'); if (!$pluginInfo) { return parent::clearInstance(); } else { return $this->___callPlugins('clearInstance', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoredData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoredData'); if (!$pluginInfo) { return parent::getStoredData(); } else { return $this->___callPlugins('getStoredData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEventPrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEventPrefix'); if (!$pluginInfo) { return parent::getEventPrefix(); } else { return $this->___callPlugins('getEventPrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addData(array $arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); if (!$pluginInfo) { return parent::addData($arr); } else { return $this->___callPlugins('addData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByPath($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); if (!$pluginInfo) { return parent::getDataByPath($path); } else { return $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); if (!$pluginInfo) { return parent::getDataByKey($key); } else { return $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataUsingMethod($key, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); if (!$pluginInfo) { return parent::setDataUsingMethod($key, $args); } else { return $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataUsingMethod($key, $args = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); if (!$pluginInfo) { return parent::getDataUsingMethod($key, $args); } else { return $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasData($key = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); if (!$pluginInfo) { return parent::hasData($key); } else { return $this->___callPlugins('hasData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray($keys); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); if (!$pluginInfo) { return parent::convertToArray($keys); } else { return $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); if (!$pluginInfo) { return parent::toXml($keys, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('toXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); if (!$pluginInfo) { return parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); if (!$pluginInfo) { return parent::toJson($keys); } else { return $this->___callPlugins('toJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); if (!$pluginInfo) { return parent::convertToJson($keys); } else { return $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toString($format = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); if (!$pluginInfo) { return parent::toString($format); } else { return $this->___callPlugins('toString', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function __call($method, $args) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); if (!$pluginInfo) { return parent::__call($method, $args); } else { return $this->___callPlugins('__call', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isEmpty() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); if (!$pluginInfo) { return parent::isEmpty(); } else { return $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); if (!$pluginInfo) { return parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); } else { return $this->___callPlugins('serialize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function debug($data = null, &$objects = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); if (!$pluginInfo) { return parent::debug($data, $objects); } else { return $this->___callPlugins('debug', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetSet($offset, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); if (!$pluginInfo) { return parent::offsetSet($offset, $value); } else { return $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetExists($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); if (!$pluginInfo) { return parent::offsetExists($offset); } else { return $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetUnset($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); if (!$pluginInfo) { return parent::offsetUnset($offset); } else { return $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetGet($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); if (!$pluginInfo) { return parent::offsetGet($offset); } else { return $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo); } } } generated/code/Magento/Store/Model/Store/0000775000175100017510000000000013545561747021341 5ustar webmasterwebmastergenerated/code/Magento/Store/Model/Store/Interceptor.php0000664000175100017510000012721213545561747024355 0ustar webmasterwebmaster<?php namespace Magento\Store\Model\Store; /** * Interceptor class for @see \Magento\Store\Model\Store */ class Interceptor extends \Magento\Store\Model\Store implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory, \Magento\Framework\Api\AttributeValueFactory $customAttributeFactory, \Magento\Store\Model\ResourceModel\Store $resource, \Magento\MediaStorage\Helper\File\Storage\Database $coreFileStorageDatabase, \Magento\Framework\App\Cache\Type\Config $configCacheType, \Magento\Framework\UrlInterface $url, \Magento\Framework\App\RequestInterface $request, \Magento\Config\Model\ResourceModel\Config\Data $configDataResource, \Magento\Framework\Filesystem $filesystem, \Magento\Framework\App\Config\ReinitableConfigInterface $config, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\Session\SidResolverInterface $sidResolver, \Magento\Framework\App\Http\Context $httpContext, \Magento\Framework\Session\SessionManagerInterface $session, \Magento\Directory\Model\CurrencyFactory $currencyFactory, \Magento\Store\Model\Information $information, $currencyInstalled, \Magento\Store\Api\GroupRepositoryInterface $groupRepository, \Magento\Store\Api\WebsiteRepositoryInterface $websiteRepository, ?\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, $isCustomEntryPoint = false, array $data = [], ?\Magento\Framework\Event\ManagerInterface $eventManager = null) { $this->___init(); parent::__construct($context, $registry, $extensionFactory, $customAttributeFactory, $resource, $coreFileStorageDatabase, $configCacheType, $url, $request, $configDataResource, $filesystem, $config, $storeManager, $sidResolver, $httpContext, $session, $currencyFactory, $information, $currencyInstalled, $groupRepository, $websiteRepository, $resourceCollection, $isCustomEntryPoint, $data, $eventManager); } /** * {@inheritdoc} */ public function load($key, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($key, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCode'); if (!$pluginInfo) { return parent::getCode(); } else { return $this->___callPlugins('getCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCode($code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCode'); if (!$pluginInfo) { return parent::setCode($code); } else { return $this->___callPlugins('setCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getName'); if (!$pluginInfo) { return parent::getName(); } else { return $this->___callPlugins('getName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setName'); if (!$pluginInfo) { return parent::setName($name); } else { return $this->___callPlugins('setName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConfig($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConfig'); if (!$pluginInfo) { return parent::getConfig($path); } else { return $this->___callPlugins('getConfig', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setWebsite(\Magento\Store\Model\Website $website) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setWebsite'); if (!$pluginInfo) { return parent::setWebsite($website); } else { return $this->___callPlugins('setWebsite', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getWebsite() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getWebsite'); if (!$pluginInfo) { return parent::getWebsite(); } else { return $this->___callPlugins('getWebsite', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getUrl($route = '', $params = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUrl'); if (!$pluginInfo) { return parent::getUrl($route, $params); } else { return $this->___callPlugins('getUrl', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getBaseUrl($type = 'link', $secure = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getBaseUrl'); if (!$pluginInfo) { return parent::getBaseUrl($type, $secure); } else { return $this->___callPlugins('getBaseUrl', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getBaseMediaDir() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getBaseMediaDir'); if (!$pluginInfo) { return parent::getBaseMediaDir(); } else { return $this->___callPlugins('getBaseMediaDir', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getBaseStaticDir() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getBaseStaticDir'); if (!$pluginInfo) { return parent::getBaseStaticDir(); } else { return $this->___callPlugins('getBaseStaticDir', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isUseStoreInUrl() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isUseStoreInUrl'); if (!$pluginInfo) { return parent::isUseStoreInUrl(); } else { return $this->___callPlugins('isUseStoreInUrl', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId'); if (!$pluginInfo) { return parent::getId(); } else { return $this->___callPlugins('getId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isFrontUrlSecure() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isFrontUrlSecure'); if (!$pluginInfo) { return parent::isFrontUrlSecure(); } else { return $this->___callPlugins('isFrontUrlSecure', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isUrlSecure() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isUrlSecure'); if (!$pluginInfo) { return parent::isUrlSecure(); } else { return $this->___callPlugins('isUrlSecure', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isCurrentlySecure() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isCurrentlySecure'); if (!$pluginInfo) { return parent::isCurrentlySecure(); } else { return $this->___callPlugins('isCurrentlySecure', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getBaseCurrencyCode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getBaseCurrencyCode'); if (!$pluginInfo) { return parent::getBaseCurrencyCode(); } else { return $this->___callPlugins('getBaseCurrencyCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getBaseCurrency() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getBaseCurrency'); if (!$pluginInfo) { return parent::getBaseCurrency(); } else { return $this->___callPlugins('getBaseCurrency', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultCurrencyCode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultCurrencyCode'); if (!$pluginInfo) { return parent::getDefaultCurrencyCode(); } else { return $this->___callPlugins('getDefaultCurrencyCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultCurrency() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultCurrency'); if (!$pluginInfo) { return parent::getDefaultCurrency(); } else { return $this->___callPlugins('getDefaultCurrency', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCurrentCurrencyCode($code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCurrentCurrencyCode'); if (!$pluginInfo) { return parent::setCurrentCurrencyCode($code); } else { return $this->___callPlugins('setCurrentCurrencyCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCurrentCurrencyCode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurrentCurrencyCode'); if (!$pluginInfo) { return parent::getCurrentCurrencyCode(); } else { return $this->___callPlugins('getCurrentCurrencyCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAvailableCurrencyCodes($skipBaseNotAllowed = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAvailableCurrencyCodes'); if (!$pluginInfo) { return parent::getAvailableCurrencyCodes($skipBaseNotAllowed); } else { return $this->___callPlugins('getAvailableCurrencyCodes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAllowedCurrencies() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAllowedCurrencies'); if (!$pluginInfo) { return parent::getAllowedCurrencies(); } else { return $this->___callPlugins('getAllowedCurrencies', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCurrentCurrency() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurrentCurrency'); if (!$pluginInfo) { return parent::getCurrentCurrency(); } else { return $this->___callPlugins('getCurrentCurrency', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCurrentCurrencyRate() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurrentCurrencyRate'); if (!$pluginInfo) { return parent::getCurrentCurrencyRate(); } else { return $this->___callPlugins('getCurrentCurrencyRate', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getRootCategoryId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getRootCategoryId'); if (!$pluginInfo) { return parent::getRootCategoryId(); } else { return $this->___callPlugins('getRootCategoryId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setGroup(\Magento\Store\Model\Group $group) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setGroup'); if (!$pluginInfo) { return parent::setGroup($group); } else { return $this->___callPlugins('setGroup', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getGroup() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getGroup'); if (!$pluginInfo) { return parent::getGroup(); } else { return $this->___callPlugins('getGroup', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getWebsiteId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getWebsiteId'); if (!$pluginInfo) { return parent::getWebsiteId(); } else { return $this->___callPlugins('getWebsiteId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave(); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setWebsiteId($websiteId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setWebsiteId'); if (!$pluginInfo) { return parent::setWebsiteId($websiteId); } else { return $this->___callPlugins('setWebsiteId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getGroupId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getGroupId'); if (!$pluginInfo) { return parent::getGroupId(); } else { return $this->___callPlugins('getGroupId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoreGroupId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoreGroupId'); if (!$pluginInfo) { return parent::getStoreGroupId(); } else { return $this->___callPlugins('getStoreGroupId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setStoreGroupId($storeGroupId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setStoreGroupId'); if (!$pluginInfo) { return parent::setStoreGroupId($storeGroupId); } else { return $this->___callPlugins('setStoreGroupId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIsActive() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIsActive'); if (!$pluginInfo) { return parent::getIsActive(); } else { return $this->___callPlugins('getIsActive', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIsActive($isActive) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIsActive'); if (!$pluginInfo) { return parent::setIsActive($isActive); } else { return $this->___callPlugins('setIsActive', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultGroupId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultGroupId'); if (!$pluginInfo) { return parent::getDefaultGroupId(); } else { return $this->___callPlugins('getDefaultGroupId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isCanDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isCanDelete'); if (!$pluginInfo) { return parent::isCanDelete(); } else { return $this->___callPlugins('isCanDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDefault() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDefault'); if (!$pluginInfo) { return parent::isDefault(); } else { return $this->___callPlugins('isDefault', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCurrentUrl($fromStore = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurrentUrl'); if (!$pluginInfo) { return parent::getCurrentUrl($fromStore); } else { return $this->___callPlugins('getCurrentUrl', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isActive() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isActive'); if (!$pluginInfo) { return parent::isActive(); } else { return $this->___callPlugins('isActive', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete(); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete(); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function resetConfig() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resetConfig'); if (!$pluginInfo) { return parent::resetConfig(); } else { return $this->___callPlugins('resetConfig', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isReadOnly($value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isReadOnly'); if (!$pluginInfo) { return parent::isReadOnly($value); } else { return $this->___callPlugins('isReadOnly', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFrontendName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFrontendName'); if (!$pluginInfo) { return parent::getFrontendName(); } else { return $this->___callPlugins('getFrontendName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFormattedAddress() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFormattedAddress'); if (!$pluginInfo) { return parent::getFormattedAddress(); } else { return $this->___callPlugins('getFormattedAddress', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdentities() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdentities'); if (!$pluginInfo) { return parent::getIdentities(); } else { return $this->___callPlugins('getIdentities', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStorePath() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStorePath'); if (!$pluginInfo) { return parent::getStorePath(); } else { return $this->___callPlugins('getStorePath', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getScopeType() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getScopeType'); if (!$pluginInfo) { return parent::getScopeType(); } else { return $this->___callPlugins('getScopeType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getScopeTypeName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getScopeTypeName'); if (!$pluginInfo) { return parent::getScopeTypeName(); } else { return $this->___callPlugins('getScopeTypeName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getExtensionAttributes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getExtensionAttributes'); if (!$pluginInfo) { return parent::getExtensionAttributes(); } else { return $this->___callPlugins('getExtensionAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setExtensionAttributes(\Magento\Store\Api\Data\StoreExtensionInterface $extensionAttributes) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setExtensionAttributes'); if (!$pluginInfo) { return parent::setExtensionAttributes($extensionAttributes); } else { return $this->___callPlugins('setExtensionAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCustomAttributes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCustomAttributes'); if (!$pluginInfo) { return parent::getCustomAttributes(); } else { return $this->___callPlugins('getCustomAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCustomAttribute($attributeCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCustomAttribute'); if (!$pluginInfo) { return parent::getCustomAttribute($attributeCode); } else { return $this->___callPlugins('getCustomAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCustomAttributes(array $attributes) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCustomAttributes'); if (!$pluginInfo) { return parent::setCustomAttributes($attributes); } else { return $this->___callPlugins('setCustomAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCustomAttribute($attributeCode, $attributeValue) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCustomAttribute'); if (!$pluginInfo) { return parent::setCustomAttribute($attributeCode, $attributeValue); } else { return $this->___callPlugins('setCustomAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setData($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); if (!$pluginInfo) { return parent::setData($key, $value); } else { return $this->___callPlugins('setData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); if (!$pluginInfo) { return parent::unsetData($key); } else { return $this->___callPlugins('unsetData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData($key = '', $index = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData($key, $index); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setId($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setId'); if (!$pluginInfo) { return parent::setId($value); } else { return $this->___callPlugins('setId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIdFieldName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIdFieldName'); if (!$pluginInfo) { return parent::setIdFieldName($name); } else { return $this->___callPlugins('setIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDeleted($isDeleted = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleted'); if (!$pluginInfo) { return parent::isDeleted($isDeleted); } else { return $this->___callPlugins('isDeleted', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanges() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanges'); if (!$pluginInfo) { return parent::hasDataChanges(); } else { return $this->___callPlugins('hasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataChanges($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataChanges'); if (!$pluginInfo) { return parent::setDataChanges($value); } else { return $this->___callPlugins('setDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOrigData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOrigData'); if (!$pluginInfo) { return parent::getOrigData($key); } else { return $this->___callPlugins('getOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setOrigData($key = null, $data = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrigData'); if (!$pluginInfo) { return parent::setOrigData($key, $data); } else { return $this->___callPlugins('setOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function dataHasChangedFor($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dataHasChangedFor'); if (!$pluginInfo) { return parent::dataHasChangedFor($field); } else { return $this->___callPlugins('dataHasChangedFor', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceName'); if (!$pluginInfo) { return parent::getResourceName(); } else { return $this->___callPlugins('getResourceName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceCollection'); if (!$pluginInfo) { return parent::getResourceCollection(); } else { return $this->___callPlugins('getResourceCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCollection'); if (!$pluginInfo) { return parent::getCollection(); } else { return $this->___callPlugins('getCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeLoad($identifier, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeLoad'); if (!$pluginInfo) { return parent::beforeLoad($identifier, $field); } else { return $this->___callPlugins('beforeLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad(); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isSaveAllowed() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isSaveAllowed'); if (!$pluginInfo) { return parent::isSaveAllowed(); } else { return $this->___callPlugins('isSaveAllowed', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setHasDataChanges($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHasDataChanges'); if (!$pluginInfo) { return parent::setHasDataChanges($flag); } else { return $this->___callPlugins('setHasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save(); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterCommitCallback() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterCommitCallback'); if (!$pluginInfo) { return parent::afterCommitCallback(); } else { return $this->___callPlugins('afterCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isObjectNew($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isObjectNew'); if (!$pluginInfo) { return parent::isObjectNew($flag); } else { return $this->___callPlugins('isObjectNew', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave(); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validateBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateBeforeSave'); if (!$pluginInfo) { return parent::validateBeforeSave(); } else { return $this->___callPlugins('validateBeforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCacheTags() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCacheTags'); if (!$pluginInfo) { return parent::getCacheTags(); } else { return $this->___callPlugins('getCacheTags', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function cleanModelCache() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanModelCache'); if (!$pluginInfo) { return parent::cleanModelCache(); } else { return $this->___callPlugins('cleanModelCache', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete(); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDeleteCommit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDeleteCommit'); if (!$pluginInfo) { return parent::afterDeleteCommit(); } else { return $this->___callPlugins('afterDeleteCommit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResource() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); if (!$pluginInfo) { return parent::getResource(); } else { return $this->___callPlugins('getResource', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityId'); if (!$pluginInfo) { return parent::getEntityId(); } else { return $this->___callPlugins('getEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntityId($entityId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityId'); if (!$pluginInfo) { return parent::setEntityId($entityId); } else { return $this->___callPlugins('setEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clearInstance() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clearInstance'); if (!$pluginInfo) { return parent::clearInstance(); } else { return $this->___callPlugins('clearInstance', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoredData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoredData'); if (!$pluginInfo) { return parent::getStoredData(); } else { return $this->___callPlugins('getStoredData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEventPrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEventPrefix'); if (!$pluginInfo) { return parent::getEventPrefix(); } else { return $this->___callPlugins('getEventPrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addData(array $arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); if (!$pluginInfo) { return parent::addData($arr); } else { return $this->___callPlugins('addData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByPath($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); if (!$pluginInfo) { return parent::getDataByPath($path); } else { return $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); if (!$pluginInfo) { return parent::getDataByKey($key); } else { return $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataUsingMethod($key, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); if (!$pluginInfo) { return parent::setDataUsingMethod($key, $args); } else { return $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataUsingMethod($key, $args = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); if (!$pluginInfo) { return parent::getDataUsingMethod($key, $args); } else { return $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasData($key = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); if (!$pluginInfo) { return parent::hasData($key); } else { return $this->___callPlugins('hasData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray($keys); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); if (!$pluginInfo) { return parent::convertToArray($keys); } else { return $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); if (!$pluginInfo) { return parent::toXml($keys, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('toXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); if (!$pluginInfo) { return parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); if (!$pluginInfo) { return parent::toJson($keys); } else { return $this->___callPlugins('toJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); if (!$pluginInfo) { return parent::convertToJson($keys); } else { return $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toString($format = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); if (!$pluginInfo) { return parent::toString($format); } else { return $this->___callPlugins('toString', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function __call($method, $args) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); if (!$pluginInfo) { return parent::__call($method, $args); } else { return $this->___callPlugins('__call', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isEmpty() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); if (!$pluginInfo) { return parent::isEmpty(); } else { return $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); if (!$pluginInfo) { return parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); } else { return $this->___callPlugins('serialize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function debug($data = null, &$objects = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); if (!$pluginInfo) { return parent::debug($data, $objects); } else { return $this->___callPlugins('debug', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetSet($offset, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); if (!$pluginInfo) { return parent::offsetSet($offset, $value); } else { return $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetExists($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); if (!$pluginInfo) { return parent::offsetExists($offset); } else { return $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetUnset($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); if (!$pluginInfo) { return parent::offsetUnset($offset); } else { return $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetGet($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); if (!$pluginInfo) { return parent::offsetGet($offset); } else { return $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo); } } } generated/code/Magento/Store/Api/0000775000175100017510000000000013545561724017711 5ustar webmasterwebmastergenerated/code/Magento/Store/Api/Data/0000775000175100017510000000000013545561747020567 5ustar webmasterwebmastergenerated/code/Magento/Store/Api/Data/GroupExtensionInterface.php0000664000175100017510000000033713545561724026110 0ustar webmasterwebmaster<?php namespace Magento\Store\Api\Data; /** * ExtensionInterface class for @see \Magento\Store\Api\Data\GroupInterface */ interface GroupExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface { } generated/code/Magento/Store/Api/Data/WebsiteExtensionInterface.php0000664000175100017510000000034313545561747026420 0ustar webmasterwebmaster<?php namespace Magento\Store\Api\Data; /** * ExtensionInterface class for @see \Magento\Store\Api\Data\WebsiteInterface */ interface WebsiteExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface { } generated/code/Magento/Store/Api/Data/StoreExtensionInterface.php0000664000175100017510000000033713545561747026115 0ustar webmasterwebmaster<?php namespace Magento\Store\Api\Data; /** * ExtensionInterface class for @see \Magento\Store\Api\Data\StoreInterface */ interface StoreExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface { } generated/code/Magento/WebapiAsync/0000775000175100017510000000000013545561725020312 5ustar webmasterwebmastergenerated/code/Magento/WebapiAsync/Model/0000775000175100017510000000000013545561725021352 5ustar webmasterwebmastergenerated/code/Magento/WebapiAsync/Model/Config/0000775000175100017510000000000013545561725022557 5ustar webmasterwebmastergenerated/code/Magento/WebapiAsync/Model/Config/Proxy.php0000664000175100017510000000460013545561725024411 0ustar webmasterwebmaster<?php namespace Magento\WebapiAsync\Model\Config; /** * Proxy class for @see \Magento\WebapiAsync\Model\Config */ class Proxy extends \Magento\WebapiAsync\Model\Config implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\WebapiAsync\Model\Config */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\WebapiAsync\\Model\\Config', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\WebapiAsync\Model\Config */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function getServices() { return $this->_getSubject()->getServices(); } /** * {@inheritdoc} */ public function getTopicName($routeUrl, $httpMethod) { return $this->_getSubject()->getTopicName($routeUrl, $httpMethod); } } generated/code/Magento/Webapi/0000775000175100017510000000000013545561725017314 5ustar webmasterwebmastergenerated/code/Magento/Webapi/Model/0000775000175100017510000000000013545561736020356 5ustar webmasterwebmastergenerated/code/Magento/Webapi/Model/Config/0000775000175100017510000000000013545561725021561 5ustar webmasterwebmastergenerated/code/Magento/Webapi/Model/Config/Converter/0000775000175100017510000000000013545561725023530 5ustar webmasterwebmastergenerated/code/Magento/Webapi/Model/Config/Converter/Interceptor.php0000664000175100017510000000134713545561725026544 0ustar webmasterwebmaster<?php namespace Magento\Webapi\Model\Config\Converter; /** * Interceptor class for @see \Magento\Webapi\Model\Config\Converter */ class Interceptor extends \Magento\Webapi\Model\Config\Converter implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct() { $this->___init(); } /** * {@inheritdoc} */ public function convert($source) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convert'); if (!$pluginInfo) { return parent::convert($source); } else { return $this->___callPlugins('convert', func_get_args(), $pluginInfo); } } } generated/code/Magento/Webapi/Model/Rest/0000775000175100017510000000000013545561725021271 5ustar webmasterwebmastergenerated/code/Magento/Webapi/Model/Rest/SwaggerFactory.php0000664000175100017510000000210613545561725024730 0ustar webmasterwebmaster<?php namespace Magento\Webapi\Model\Rest; /** * Factory class for @see \Magento\Webapi\Model\Rest\Swagger */ class SwaggerFactory { /** * 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\\Webapi\\Model\\Rest\\Swagger') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Webapi\Model\Rest\Swagger */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Webapi/Model/ServiceMetadata/0000775000175100017510000000000013545561725023415 5ustar webmasterwebmastergenerated/code/Magento/Webapi/Model/ServiceMetadata/Interceptor.php0000664000175100017510000000531013545561725026423 0ustar webmasterwebmaster<?php namespace Magento\Webapi\Model\ServiceMetadata; /** * Interceptor class for @see \Magento\Webapi\Model\ServiceMetadata */ class Interceptor extends \Magento\Webapi\Model\ServiceMetadata implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Webapi\Model\Config $config, \Magento\Webapi\Model\Cache\Type\Webapi $cache, \Magento\Webapi\Model\Config\ClassReflector $classReflector, \Magento\Framework\Reflection\TypeProcessor $typeProcessor, ?\Magento\Framework\Serialize\SerializerInterface $serializer = null) { $this->___init(); parent::__construct($config, $cache, $classReflector, $typeProcessor, $serializer); } /** * {@inheritdoc} */ public function getServicesConfig() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getServicesConfig'); if (!$pluginInfo) { return parent::getServicesConfig(); } else { return $this->___callPlugins('getServicesConfig', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getServiceMetadata($serviceName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getServiceMetadata'); if (!$pluginInfo) { return parent::getServiceMetadata($serviceName); } else { return $this->___callPlugins('getServiceMetadata', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getServiceName($interfaceName, $version, $preserveVersion = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getServiceName'); if (!$pluginInfo) { return parent::getServiceName($interfaceName, $version, $preserveVersion); } else { return $this->___callPlugins('getServiceName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getRouteMetadata($serviceName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getRouteMetadata'); if (!$pluginInfo) { return parent::getRouteMetadata($serviceName); } else { return $this->___callPlugins('getRouteMetadata', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getRoutesConfig() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getRoutesConfig'); if (!$pluginInfo) { return parent::getRoutesConfig(); } else { return $this->___callPlugins('getRoutesConfig', func_get_args(), $pluginInfo); } } } generated/code/Magento/Webapi/Model/Cache/0000775000175100017510000000000013545561736021361 5ustar webmasterwebmastergenerated/code/Magento/Webapi/Model/Cache/Type/0000775000175100017510000000000013545561736022302 5ustar webmasterwebmastergenerated/code/Magento/Webapi/Model/Cache/Type/Webapi/0000775000175100017510000000000013545561736023511 5ustar webmasterwebmastergenerated/code/Magento/Webapi/Model/Cache/Type/Webapi/Interceptor.php0000664000175100017510000000763213545561736026530 0ustar webmasterwebmaster<?php namespace Magento\Webapi\Model\Cache\Type\Webapi; /** * Interceptor class for @see \Magento\Webapi\Model\Cache\Type\Webapi */ class Interceptor extends \Magento\Webapi\Model\Cache\Type\Webapi implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Authorization\Model\UserContextInterface $userContext) { $this->___init(); parent::__construct($cacheFrontendPool, $storeManager, $userContext); } /** * {@inheritdoc} */ public function generateCacheIdUsingContext($prefix) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'generateCacheIdUsingContext'); if (!$pluginInfo) { return parent::generateCacheIdUsingContext($prefix); } else { return $this->___callPlugins('generateCacheIdUsingContext', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTag() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTag'); if (!$pluginInfo) { return parent::getTag(); } else { return $this->___callPlugins('getTag', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save($data, $identifier, array $tags = [], $lifeTime = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($data, $identifier, $tags, $lifeTime); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clean($mode = 'all', array $tags = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clean'); if (!$pluginInfo) { return parent::clean($mode, $tags); } else { return $this->___callPlugins('clean', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function test($identifier) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'test'); if (!$pluginInfo) { return parent::test($identifier); } else { return $this->___callPlugins('test', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($identifier) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($identifier); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function remove($identifier) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'remove'); if (!$pluginInfo) { return parent::remove($identifier); } else { return $this->___callPlugins('remove', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getBackend() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getBackend'); if (!$pluginInfo) { return parent::getBackend(); } else { return $this->___callPlugins('getBackend', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getLowLevelFrontend() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getLowLevelFrontend'); if (!$pluginInfo) { return parent::getLowLevelFrontend(); } else { return $this->___callPlugins('getLowLevelFrontend', func_get_args(), $pluginInfo); } } } generated/code/Magento/Integration/0000775000175100017510000000000013545561725020370 5ustar webmasterwebmastergenerated/code/Magento/Integration/Model/0000775000175100017510000000000013545561725021430 5ustar webmasterwebmastergenerated/code/Magento/Integration/Model/ConfigBasedIntegrationManager/0000775000175100017510000000000013545561725027273 5ustar webmasterwebmastergenerated/code/Magento/Integration/Model/ConfigBasedIntegrationManager/Interceptor.php0000664000175100017510000000313013545561725032277 0ustar webmasterwebmaster<?php namespace Magento\Integration\Model\ConfigBasedIntegrationManager; /** * Interceptor class for @see \Magento\Integration\Model\ConfigBasedIntegrationManager */ class Interceptor extends \Magento\Integration\Model\ConfigBasedIntegrationManager implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Integration\Api\IntegrationServiceInterface $integrationService, \Magento\Authorization\Model\Acl\AclRetriever $aclRetriever, \Magento\Integration\Model\Config $integrationConfig) { $this->___init(); parent::__construct($integrationService, $aclRetriever, $integrationConfig); } /** * {@inheritdoc} */ public function processIntegrationConfig(array $integrationNames) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'processIntegrationConfig'); if (!$pluginInfo) { return parent::processIntegrationConfig($integrationNames); } else { return $this->___callPlugins('processIntegrationConfig', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function processConfigBasedIntegrations(array $integrations) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'processConfigBasedIntegrations'); if (!$pluginInfo) { return parent::processConfigBasedIntegrations($integrations); } else { return $this->___callPlugins('processConfigBasedIntegrations', func_get_args(), $pluginInfo); } } } generated/code/Magento/Integration/Model/IntegrationService/0000775000175100017510000000000013545561725025234 5ustar webmasterwebmastergenerated/code/Magento/Integration/Model/IntegrationService/Interceptor.php0000664000175100017510000000715313545561725030251 0ustar webmasterwebmaster<?php namespace Magento\Integration\Model\IntegrationService; /** * Interceptor class for @see \Magento\Integration\Model\IntegrationService */ class Interceptor extends \Magento\Integration\Model\IntegrationService implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Integration\Model\IntegrationFactory $integrationFactory, \Magento\Integration\Api\OauthServiceInterface $oauthService) { $this->___init(); parent::__construct($integrationFactory, $oauthService); } /** * {@inheritdoc} */ public function create(array $integrationData) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'create'); if (!$pluginInfo) { return parent::create($integrationData); } else { return $this->___callPlugins('create', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function update(array $integrationData) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'update'); if (!$pluginInfo) { return parent::update($integrationData); } else { return $this->___callPlugins('update', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete($integrationId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($integrationId); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function get($integrationId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'get'); if (!$pluginInfo) { return parent::get($integrationId); } else { return $this->___callPlugins('get', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function findByName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'findByName'); if (!$pluginInfo) { return parent::findByName($name); } else { return $this->___callPlugins('findByName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function findByConsumerId($consumerId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'findByConsumerId'); if (!$pluginInfo) { return parent::findByConsumerId($consumerId); } else { return $this->___callPlugins('findByConsumerId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function findActiveIntegrationByConsumerId($consumerId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'findActiveIntegrationByConsumerId'); if (!$pluginInfo) { return parent::findActiveIntegrationByConsumerId($consumerId); } else { return $this->___callPlugins('findActiveIntegrationByConsumerId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSelectedResources($integrationId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSelectedResources'); if (!$pluginInfo) { return parent::getSelectedResources($integrationId); } else { return $this->___callPlugins('getSelectedResources', func_get_args(), $pluginInfo); } } } generated/code/Magento/Integration/Model/IntegrationFactory.php0000664000175100017510000000212513545561725025754 0ustar webmasterwebmaster<?php namespace Magento\Integration\Model; /** * Factory class for @see \Magento\Integration\Model\Integration */ class IntegrationFactory { /** * 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\\Integration\\Model\\Integration') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Integration\Model\Integration */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Integration/Model/Oauth/0000775000175100017510000000000013545561725022510 5ustar webmasterwebmastergenerated/code/Magento/Integration/Model/Oauth/ConsumerFactory.php0000664000175100017510000000214213545561725026343 0ustar webmasterwebmaster<?php namespace Magento\Integration\Model\Oauth; /** * Factory class for @see \Magento\Integration\Model\Oauth\Consumer */ class ConsumerFactory { /** * 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\\Integration\\Model\\Oauth\\Consumer') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Integration\Model\Oauth\Consumer */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Integration/Model/Oauth/TokenFactory.php0000664000175100017510000000212613545561725025632 0ustar webmasterwebmaster<?php namespace Magento\Integration\Model\Oauth; /** * Factory class for @see \Magento\Integration\Model\Oauth\Token */ class TokenFactory { /** * 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\\Integration\\Model\\Oauth\\Token') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Integration\Model\Oauth\Token */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Authorization/0000775000175100017510000000000013545561725020745 5ustar webmasterwebmastergenerated/code/Magento/Authorization/Model/0000775000175100017510000000000013545561736022007 5ustar webmasterwebmastergenerated/code/Magento/Authorization/Model/ResourceModel/0000775000175100017510000000000013545561725024555 5ustar webmasterwebmastergenerated/code/Magento/Authorization/Model/ResourceModel/Role/0000775000175100017510000000000013545561725025456 5ustar webmasterwebmastergenerated/code/Magento/Authorization/Model/ResourceModel/Role/CollectionFactory.php0000664000175100017510000000224713545561725031617 0ustar webmasterwebmaster<?php namespace Magento\Authorization\Model\ResourceModel\Role; /** * Factory class for @see \Magento\Authorization\Model\ResourceModel\Role\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\\Authorization\\Model\\ResourceModel\\Role\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Authorization\Model\ResourceModel\Role\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Authorization/Model/ResourceModel/Rules/0000775000175100017510000000000013545561725025647 5ustar webmasterwebmastergenerated/code/Magento/Authorization/Model/ResourceModel/Rules/CollectionFactory.php0000664000175100017510000000225313545561725032005 0ustar webmasterwebmaster<?php namespace Magento\Authorization\Model\ResourceModel\Rules; /** * Factory class for @see \Magento\Authorization\Model\ResourceModel\Rules\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\\Authorization\\Model\\ResourceModel\\Rules\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Authorization\Model\ResourceModel\Rules\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Authorization/Model/Acl/0000775000175100017510000000000013545561725022504 5ustar webmasterwebmastergenerated/code/Magento/Authorization/Model/Acl/Role/0000775000175100017510000000000013545561725023405 5ustar webmasterwebmastergenerated/code/Magento/Authorization/Model/Acl/Role/GroupFactory.php0000664000175100017510000000215313545561725026543 0ustar webmasterwebmaster<?php namespace Magento\Authorization\Model\Acl\Role; /** * Factory class for @see \Magento\Authorization\Model\Acl\Role\Group */ class GroupFactory { /** * 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\\Authorization\\Model\\Acl\\Role\\Group') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Authorization\Model\Acl\Role\Group */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Authorization/Model/Acl/Role/UserFactory.php0000664000175100017510000000214713545561725026370 0ustar webmasterwebmaster<?php namespace Magento\Authorization\Model\Acl\Role; /** * Factory class for @see \Magento\Authorization\Model\Acl\Role\User */ class UserFactory { /** * 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\\Authorization\\Model\\Acl\\Role\\User') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Authorization\Model\Acl\Role\User */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Authorization/Model/RulesFactory.php0000664000175100017510000000210513545561725025136 0ustar webmasterwebmaster<?php namespace Magento\Authorization\Model; /** * Factory class for @see \Magento\Authorization\Model\Rules */ class RulesFactory { /** * 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\\Authorization\\Model\\Rules') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Authorization\Model\Rules */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Authorization/Model/RoleFactory.php0000664000175100017510000000210113545561736024743 0ustar webmasterwebmaster<?php namespace Magento\Authorization\Model; /** * Factory class for @see \Magento\Authorization\Model\Role */ class RoleFactory { /** * 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\\Authorization\\Model\\Role') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Authorization\Model\Role */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Theme/0000775000175100017510000000000013545561731017144 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/0000775000175100017510000000000013545561736020211 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/ResourceModel/0000775000175100017510000000000013545561736022761 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/ResourceModel/Theme/0000775000175100017510000000000013545561747024025 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/ResourceModel/Theme/Data/0000775000175100017510000000000013545561731024667 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/ResourceModel/Theme/Data/CollectionFactory.php0000664000175100017510000000224013545561731031021 0ustar webmasterwebmaster<?php namespace Magento\Theme\Model\ResourceModel\Theme\Data; /** * Factory class for @see \Magento\Theme\Model\ResourceModel\Theme\Data\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\\Theme\\Model\\ResourceModel\\Theme\\Data\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Theme\Model\ResourceModel\Theme\Data\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Theme/Model/ResourceModel/Theme/CollectionFactory.php0000664000175100017510000000221313545561736030155 0ustar webmasterwebmaster<?php namespace Magento\Theme\Model\ResourceModel\Theme; /** * Factory class for @see \Magento\Theme\Model\ResourceModel\Theme\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\\Theme\\Model\\ResourceModel\\Theme\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Theme\Model\ResourceModel\Theme\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Theme/Model/ResourceModel/Theme/Collection/0000775000175100017510000000000013545561747026120 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/ResourceModel/Theme/Collection/Proxy.php0000664000175100017510000003653313545561747027764 0ustar webmasterwebmaster<?php namespace Magento\Theme\Model\ResourceModel\Theme\Collection; /** * Proxy class for @see \Magento\Theme\Model\ResourceModel\Theme\Collection */ class Proxy extends \Magento\Theme\Model\ResourceModel\Theme\Collection implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Theme\Model\ResourceModel\Theme\Collection */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Theme\\Model\\ResourceModel\\Theme\\Collection', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Theme\Model\ResourceModel\Theme\Collection */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function addParentTitle() { return $this->_getSubject()->addParentTitle(); } /** * {@inheritdoc} */ public function addAreaFilter($area = 'frontend') { return $this->_getSubject()->addAreaFilter($area); } /** * {@inheritdoc} */ public function addTypeRelationFilter($typeParent, $typeChild) { return $this->_getSubject()->addTypeRelationFilter($typeParent, $typeChild); } /** * {@inheritdoc} */ public function addTypeFilter($type) { return $this->_getSubject()->addTypeFilter($type); } /** * {@inheritdoc} */ public function filterVisibleThemes() { return $this->_getSubject()->filterVisibleThemes(); } /** * {@inheritdoc} */ public function toOptionArray() { return $this->_getSubject()->toOptionArray(); } /** * {@inheritdoc} */ public function toOptionHash() { return $this->_getSubject()->toOptionHash(); } /** * {@inheritdoc} */ public function getThemeByFullPath($fullPath) { return $this->_getSubject()->getThemeByFullPath($fullPath); } /** * {@inheritdoc} */ public function setPageSize($size = 6) { return $this->_getSubject()->setPageSize($size); } /** * {@inheritdoc} */ public function updateChildRelations(\Magento\Framework\View\Design\ThemeInterface $themeModel) { return $this->_getSubject()->updateChildRelations($themeModel); } /** * {@inheritdoc} */ public function filterPhysicalThemes($page = null, $pageSize = 6) { return $this->_getSubject()->filterPhysicalThemes($page, $pageSize); } /** * {@inheritdoc} */ public function filterThemeCustomizations($area = 'frontend', $type = 1) { return $this->_getSubject()->filterThemeCustomizations($area, $type); } /** * {@inheritdoc} */ public function getLabels() { return $this->_getSubject()->getLabels(); } /** * {@inheritdoc} */ public function loadRegisteredThemes() { return $this->_getSubject()->loadRegisteredThemes(); } /** * {@inheritdoc} */ public function getMainTable() { return $this->_getSubject()->getMainTable(); } /** * {@inheritdoc} */ public function setMainTable($table) { return $this->_getSubject()->setMainTable($table); } /** * {@inheritdoc} */ public function getSelect() { return $this->_getSubject()->getSelect(); } /** * {@inheritdoc} */ public function addFieldToSelect($field, $alias = null) { return $this->_getSubject()->addFieldToSelect($field, $alias); } /** * {@inheritdoc} */ public function addExpressionFieldToSelect($alias, $expression, $fields) { return $this->_getSubject()->addExpressionFieldToSelect($alias, $expression, $fields); } /** * {@inheritdoc} */ public function removeFieldFromSelect($field, $isAlias = false) { return $this->_getSubject()->removeFieldFromSelect($field, $isAlias); } /** * {@inheritdoc} */ public function removeAllFieldsFromSelect() { return $this->_getSubject()->removeAllFieldsFromSelect(); } /** * {@inheritdoc} */ public function setModel($model) { return $this->_getSubject()->setModel($model); } /** * {@inheritdoc} */ public function getModelName() { return $this->_getSubject()->getModelName(); } /** * {@inheritdoc} */ public function setResourceModel($model) { return $this->_getSubject()->setResourceModel($model); } /** * {@inheritdoc} */ public function getResourceModelName() { return $this->_getSubject()->getResourceModelName(); } /** * {@inheritdoc} */ public function getResource() { return $this->_getSubject()->getResource(); } /** * {@inheritdoc} */ public function getTable($table) { return $this->_getSubject()->getTable($table); } /** * {@inheritdoc} */ public function getAllIds() { return $this->_getSubject()->getAllIds(); } /** * {@inheritdoc} */ public function join($table, $cond, $cols = '*') { return $this->_getSubject()->join($table, $cond, $cols); } /** * {@inheritdoc} */ public function setResetItemsDataChanged($flag) { return $this->_getSubject()->setResetItemsDataChanged($flag); } /** * {@inheritdoc} */ public function resetItemsDataChanged() { return $this->_getSubject()->resetItemsDataChanged(); } /** * {@inheritdoc} */ public function save() { return $this->_getSubject()->save(); } /** * {@inheritdoc} */ public function addBindParam($name, $value) { return $this->_getSubject()->addBindParam($name, $value); } /** * {@inheritdoc} */ public function getIdFieldName() { return $this->_getSubject()->getIdFieldName(); } /** * {@inheritdoc} */ public function setConnection(\Magento\Framework\DB\Adapter\AdapterInterface $conn) { return $this->_getSubject()->setConnection($conn); } /** * {@inheritdoc} */ public function getConnection() { return $this->_getSubject()->getConnection(); } /** * {@inheritdoc} */ public function getSize() { return $this->_getSubject()->getSize(); } /** * {@inheritdoc} */ public function getSelectCountSql() { return $this->_getSubject()->getSelectCountSql(); } /** * {@inheritdoc} */ public function getSelectSql($stringMode = false) { return $this->_getSubject()->getSelectSql($stringMode); } /** * {@inheritdoc} */ public function setOrder($field, $direction = 'DESC') { return $this->_getSubject()->setOrder($field, $direction); } /** * {@inheritdoc} */ public function addOrder($field, $direction = 'DESC') { return $this->_getSubject()->addOrder($field, $direction); } /** * {@inheritdoc} */ public function unshiftOrder($field, $direction = 'DESC') { return $this->_getSubject()->unshiftOrder($field, $direction); } /** * {@inheritdoc} */ public function addFieldToFilter($field, $condition = null) { return $this->_getSubject()->addFieldToFilter($field, $condition); } /** * {@inheritdoc} */ public function distinct($flag) { return $this->_getSubject()->distinct($flag); } /** * {@inheritdoc} */ public function load($printQuery = false, $logQuery = false) { return $this->_getSubject()->load($printQuery, $logQuery); } /** * {@inheritdoc} */ public function loadWithFilter($printQuery = false, $logQuery = false) { return $this->_getSubject()->loadWithFilter($printQuery, $logQuery); } /** * {@inheritdoc} */ public function fetchItem() { return $this->_getSubject()->fetchItem(); } /** * {@inheritdoc} */ public function getData() { return $this->_getSubject()->getData(); } /** * {@inheritdoc} */ public function resetData() { return $this->_getSubject()->resetData(); } /** * {@inheritdoc} */ public function loadData($printQuery = false, $logQuery = false) { return $this->_getSubject()->loadData($printQuery, $logQuery); } /** * {@inheritdoc} */ public function printLogQuery($printQuery = false, $logQuery = false, $sql = null) { return $this->_getSubject()->printLogQuery($printQuery, $logQuery, $sql); } /** * {@inheritdoc} */ public function addFilterToMap($filter, $alias, $group = 'fields') { return $this->_getSubject()->addFilterToMap($filter, $alias, $group); } /** * {@inheritdoc} */ public function joinExtensionAttribute(\Magento\Framework\Api\ExtensionAttribute\JoinDataInterface $join, \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor) { return $this->_getSubject()->joinExtensionAttribute($join, $extensionAttributesJoinProcessor); } /** * {@inheritdoc} */ public function getItemObjectClass() { return $this->_getSubject()->getItemObjectClass(); } /** * {@inheritdoc} */ public function addFilter($field, $value, $type = 'and') { return $this->_getSubject()->addFilter($field, $value, $type); } /** * {@inheritdoc} */ public function getFilter($field) { return $this->_getSubject()->getFilter($field); } /** * {@inheritdoc} */ public function isLoaded() { return $this->_getSubject()->isLoaded(); } /** * {@inheritdoc} */ public function getCurPage($displacement = 0) { return $this->_getSubject()->getCurPage($displacement); } /** * {@inheritdoc} */ public function getLastPageNumber() { return $this->_getSubject()->getLastPageNumber(); } /** * {@inheritdoc} */ public function getPageSize() { return $this->_getSubject()->getPageSize(); } /** * {@inheritdoc} */ public function getFirstItem() { return $this->_getSubject()->getFirstItem(); } /** * {@inheritdoc} */ public function getLastItem() { return $this->_getSubject()->getLastItem(); } /** * {@inheritdoc} */ public function getItems() { return $this->_getSubject()->getItems(); } /** * {@inheritdoc} */ public function getColumnValues($colName) { return $this->_getSubject()->getColumnValues($colName); } /** * {@inheritdoc} */ public function getItemsByColumnValue($column, $value) { return $this->_getSubject()->getItemsByColumnValue($column, $value); } /** * {@inheritdoc} */ public function getItemByColumnValue($column, $value) { return $this->_getSubject()->getItemByColumnValue($column, $value); } /** * {@inheritdoc} */ public function addItem(\Magento\Framework\DataObject $item) { return $this->_getSubject()->addItem($item); } /** * {@inheritdoc} */ public function removeItemByKey($key) { return $this->_getSubject()->removeItemByKey($key); } /** * {@inheritdoc} */ public function removeAllItems() { return $this->_getSubject()->removeAllItems(); } /** * {@inheritdoc} */ public function clear() { return $this->_getSubject()->clear(); } /** * {@inheritdoc} */ public function walk($callback, array $args = []) { return $this->_getSubject()->walk($callback, $args); } /** * {@inheritdoc} */ public function each($objMethod, $args = []) { return $this->_getSubject()->each($objMethod, $args); } /** * {@inheritdoc} */ public function setDataToAll($key, $value = null) { return $this->_getSubject()->setDataToAll($key, $value); } /** * {@inheritdoc} */ public function setCurPage($page) { return $this->_getSubject()->setCurPage($page); } /** * {@inheritdoc} */ public function setItemObjectClass($className) { return $this->_getSubject()->setItemObjectClass($className); } /** * {@inheritdoc} */ public function getNewEmptyItem() { return $this->_getSubject()->getNewEmptyItem(); } /** * {@inheritdoc} */ public function toXml() { return $this->_getSubject()->toXml(); } /** * {@inheritdoc} */ public function toArray($arrRequiredFields = []) { return $this->_getSubject()->toArray($arrRequiredFields); } /** * {@inheritdoc} */ public function getItemById($idValue) { return $this->_getSubject()->getItemById($idValue); } /** * {@inheritdoc} */ public function getIterator() { return $this->_getSubject()->getIterator(); } /** * {@inheritdoc} */ public function count() { return $this->_getSubject()->count(); } /** * {@inheritdoc} */ public function getFlag($flag) { return $this->_getSubject()->getFlag($flag); } /** * {@inheritdoc} */ public function setFlag($flag, $value = null) { return $this->_getSubject()->setFlag($flag, $value); } /** * {@inheritdoc} */ public function hasFlag($flag) { return $this->_getSubject()->hasFlag($flag); } } generated/code/Magento/Theme/Model/ResourceModel/Design/0000775000175100017510000000000013545561731024165 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/ResourceModel/Design/Config/0000775000175100017510000000000013545561731025372 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/ResourceModel/Design/Config/Scope/0000775000175100017510000000000013545561731026443 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/ResourceModel/Design/Config/Scope/CollectionFactory.php0000664000175100017510000000230513545561731032577 0ustar webmasterwebmaster<?php namespace Magento\Theme\Model\ResourceModel\Design\Config\Scope; /** * Factory class for @see \Magento\Theme\Model\ResourceModel\Design\Config\Scope\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\\Theme\\Model\\ResourceModel\\Design\\Config\\Scope\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Theme\Model\ResourceModel\Design\Config\Scope\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Theme/Model/ResourceModel/Design/Config/CollectionFactory.php0000664000175100017510000000225413545561731031531 0ustar webmasterwebmaster<?php namespace Magento\Theme\Model\ResourceModel\Design\Config; /** * Factory class for @see \Magento\Theme\Model\ResourceModel\Design\Config\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\\Theme\\Model\\ResourceModel\\Design\\Config\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Theme\Model\ResourceModel\Design\Config\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Theme/Model/ResourceModel/ThemeFactory.php0000664000175100017510000000213613545561736026066 0ustar webmasterwebmaster<?php namespace Magento\Theme\Model\ResourceModel; /** * Factory class for @see \Magento\Theme\Model\ResourceModel\Theme */ class ThemeFactory { /** * 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\\Theme\\Model\\ResourceModel\\Theme') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Theme\Model\ResourceModel\Theme */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Theme/Model/Design/0000775000175100017510000000000013545561733021417 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/Design/Backend/0000775000175100017510000000000013545561733022746 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/Design/Backend/Theme/0000775000175100017510000000000013545561733024010 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/Design/Backend/Theme/Interceptor.php0000664000175100017510000006010313545561733027017 0ustar webmasterwebmaster<?php namespace Magento\Theme\Model\Design\Backend\Theme; /** * Interceptor class for @see \Magento\Theme\Model\Design\Backend\Theme */ class Interceptor extends \Magento\Theme\Model\Design\Backend\Theme 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\View\DesignInterface $design, ?\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, ?\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = []) { $this->___init(); parent::__construct($context, $registry, $config, $cacheTypeList, $design, $resource, $resourceCollection, $data); } /** * {@inheritdoc} */ public function beforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave(); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValue() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValue'); if (!$pluginInfo) { return parent::getValue(); } else { return $this->___callPlugins('getValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave(); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete(); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isValueChanged() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isValueChanged'); if (!$pluginInfo) { return parent::isValueChanged(); } else { return $this->___callPlugins('isValueChanged', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOldValue() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOldValue'); if (!$pluginInfo) { return parent::getOldValue(); } else { return $this->___callPlugins('getOldValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFieldsetDataValue($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFieldsetDataValue'); if (!$pluginInfo) { return parent::getFieldsetDataValue($key); } else { return $this->___callPlugins('getFieldsetDataValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIdFieldName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIdFieldName'); if (!$pluginInfo) { return parent::setIdFieldName($name); } else { return $this->___callPlugins('setIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId'); if (!$pluginInfo) { return parent::getId(); } else { return $this->___callPlugins('getId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setId($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setId'); if (!$pluginInfo) { return parent::setId($value); } else { return $this->___callPlugins('setId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDeleted($isDeleted = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleted'); if (!$pluginInfo) { return parent::isDeleted($isDeleted); } else { return $this->___callPlugins('isDeleted', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanges() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanges'); if (!$pluginInfo) { return parent::hasDataChanges(); } else { return $this->___callPlugins('hasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setData($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); if (!$pluginInfo) { return parent::setData($key, $value); } else { return $this->___callPlugins('setData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); if (!$pluginInfo) { return parent::unsetData($key); } else { return $this->___callPlugins('unsetData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataChanges($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataChanges'); if (!$pluginInfo) { return parent::setDataChanges($value); } else { return $this->___callPlugins('setDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOrigData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOrigData'); if (!$pluginInfo) { return parent::getOrigData($key); } else { return $this->___callPlugins('getOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setOrigData($key = null, $data = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrigData'); if (!$pluginInfo) { return parent::setOrigData($key, $data); } else { return $this->___callPlugins('setOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function dataHasChangedFor($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dataHasChangedFor'); if (!$pluginInfo) { return parent::dataHasChangedFor($field); } else { return $this->___callPlugins('dataHasChangedFor', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceName'); if (!$pluginInfo) { return parent::getResourceName(); } else { return $this->___callPlugins('getResourceName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceCollection'); if (!$pluginInfo) { return parent::getResourceCollection(); } else { return $this->___callPlugins('getResourceCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCollection'); if (!$pluginInfo) { return parent::getCollection(); } else { return $this->___callPlugins('getCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($modelId, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($modelId, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeLoad($identifier, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeLoad'); if (!$pluginInfo) { return parent::beforeLoad($identifier, $field); } else { return $this->___callPlugins('beforeLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad(); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isSaveAllowed() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isSaveAllowed'); if (!$pluginInfo) { return parent::isSaveAllowed(); } else { return $this->___callPlugins('isSaveAllowed', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setHasDataChanges($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHasDataChanges'); if (!$pluginInfo) { return parent::setHasDataChanges($flag); } else { return $this->___callPlugins('setHasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save(); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterCommitCallback() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterCommitCallback'); if (!$pluginInfo) { return parent::afterCommitCallback(); } else { return $this->___callPlugins('afterCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isObjectNew($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isObjectNew'); if (!$pluginInfo) { return parent::isObjectNew($flag); } else { return $this->___callPlugins('isObjectNew', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validateBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateBeforeSave'); if (!$pluginInfo) { return parent::validateBeforeSave(); } else { return $this->___callPlugins('validateBeforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCacheTags() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCacheTags'); if (!$pluginInfo) { return parent::getCacheTags(); } else { return $this->___callPlugins('getCacheTags', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function cleanModelCache() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanModelCache'); if (!$pluginInfo) { return parent::cleanModelCache(); } else { return $this->___callPlugins('cleanModelCache', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete(); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete(); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDeleteCommit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDeleteCommit'); if (!$pluginInfo) { return parent::afterDeleteCommit(); } else { return $this->___callPlugins('afterDeleteCommit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResource() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); if (!$pluginInfo) { return parent::getResource(); } else { return $this->___callPlugins('getResource', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityId'); if (!$pluginInfo) { return parent::getEntityId(); } else { return $this->___callPlugins('getEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntityId($entityId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityId'); if (!$pluginInfo) { return parent::setEntityId($entityId); } else { return $this->___callPlugins('setEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clearInstance() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clearInstance'); if (!$pluginInfo) { return parent::clearInstance(); } else { return $this->___callPlugins('clearInstance', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoredData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoredData'); if (!$pluginInfo) { return parent::getStoredData(); } else { return $this->___callPlugins('getStoredData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEventPrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEventPrefix'); if (!$pluginInfo) { return parent::getEventPrefix(); } else { return $this->___callPlugins('getEventPrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addData(array $arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); if (!$pluginInfo) { return parent::addData($arr); } else { return $this->___callPlugins('addData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData($key = '', $index = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData($key, $index); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByPath($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); if (!$pluginInfo) { return parent::getDataByPath($path); } else { return $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); if (!$pluginInfo) { return parent::getDataByKey($key); } else { return $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataUsingMethod($key, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); if (!$pluginInfo) { return parent::setDataUsingMethod($key, $args); } else { return $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataUsingMethod($key, $args = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); if (!$pluginInfo) { return parent::getDataUsingMethod($key, $args); } else { return $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasData($key = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); if (!$pluginInfo) { return parent::hasData($key); } else { return $this->___callPlugins('hasData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray($keys); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); if (!$pluginInfo) { return parent::convertToArray($keys); } else { return $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); if (!$pluginInfo) { return parent::toXml($keys, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('toXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); if (!$pluginInfo) { return parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); if (!$pluginInfo) { return parent::toJson($keys); } else { return $this->___callPlugins('toJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); if (!$pluginInfo) { return parent::convertToJson($keys); } else { return $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toString($format = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); if (!$pluginInfo) { return parent::toString($format); } else { return $this->___callPlugins('toString', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function __call($method, $args) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); if (!$pluginInfo) { return parent::__call($method, $args); } else { return $this->___callPlugins('__call', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isEmpty() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); if (!$pluginInfo) { return parent::isEmpty(); } else { return $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); if (!$pluginInfo) { return parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); } else { return $this->___callPlugins('serialize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function debug($data = null, &$objects = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); if (!$pluginInfo) { return parent::debug($data, $objects); } else { return $this->___callPlugins('debug', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetSet($offset, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); if (!$pluginInfo) { return parent::offsetSet($offset, $value); } else { return $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetExists($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); if (!$pluginInfo) { return parent::offsetExists($offset); } else { return $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetUnset($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); if (!$pluginInfo) { return parent::offsetUnset($offset); } else { return $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetGet($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); if (!$pluginInfo) { return parent::offsetGet($offset); } else { return $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo); } } } generated/code/Magento/Theme/Model/Config/0000775000175100017510000000000013545561736021416 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/Config/Processor/0000775000175100017510000000000013545561736023375 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/Config/Processor/DesignTheme/0000775000175100017510000000000013545561736025571 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/Config/Processor/DesignTheme/Proxy.php0000664000175100017510000000447013545561736027430 0ustar webmasterwebmaster<?php namespace Magento\Theme\Model\Config\Processor\DesignTheme; /** * Proxy class for @see \Magento\Theme\Model\Config\Processor\DesignTheme */ class Proxy extends \Magento\Theme\Model\Config\Processor\DesignTheme implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Theme\Model\Config\Processor\DesignTheme */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Theme\\Model\\Config\\Processor\\DesignTheme', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Theme\Model\Config\Processor\DesignTheme */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function process(array $config) { return $this->_getSubject()->process($config); } } generated/code/Magento/Theme/Model/ThemeFactory.php0000664000175100017510000000204513545561736023315 0ustar webmasterwebmaster<?php namespace Magento\Theme\Model; /** * Factory class for @see \Magento\Theme\Model\Theme */ class ThemeFactory { /** * 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\\Theme\\Model\\Theme') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Theme\Model\Theme */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Theme/Model/View/0000775000175100017510000000000013545561736021123 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/View/Design/0000775000175100017510000000000013545561736022334 5ustar webmasterwebmastergenerated/code/Magento/Theme/Model/View/Design/Proxy.php0000664000175100017510000000721413545561736024172 0ustar webmasterwebmaster<?php namespace Magento\Theme\Model\View\Design; /** * Proxy class for @see \Magento\Theme\Model\View\Design */ class Proxy extends \Magento\Theme\Model\View\Design implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Theme\Model\View\Design */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Theme\\Model\\View\\Design', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Theme\Model\View\Design */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function setArea($area) { return $this->_getSubject()->setArea($area); } /** * {@inheritdoc} */ public function getArea() { return $this->_getSubject()->getArea(); } /** * {@inheritdoc} */ public function setDesignTheme($theme, $area = null) { return $this->_getSubject()->setDesignTheme($theme, $area); } /** * {@inheritdoc} */ public function getConfigurationDesignTheme($area = null, array $params = []) { return $this->_getSubject()->getConfigurationDesignTheme($area, $params); } /** * {@inheritdoc} */ public function setDefaultDesignTheme() { return $this->_getSubject()->setDefaultDesignTheme(); } /** * {@inheritdoc} */ public function getDesignTheme() { return $this->_getSubject()->getDesignTheme(); } /** * {@inheritdoc} */ public function getThemePath(\Magento\Framework\View\Design\ThemeInterface $theme) { return $this->_getSubject()->getThemePath($theme); } /** * {@inheritdoc} */ public function getLocale() { return $this->_getSubject()->getLocale(); } /** * {@inheritdoc} */ public function setLocale(\Magento\Framework\Locale\ResolverInterface $locale) { return $this->_getSubject()->setLocale($locale); } /** * {@inheritdoc} */ public function getDesignParams() { return $this->_getSubject()->getDesignParams(); } } generated/code/Magento/Customer/0000775000175100017510000000000013545561733017705 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/0000775000175100017510000000000013545561734020746 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/ResourceModel/0000775000175100017510000000000013545561736023520 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/ResourceModel/Customer/0000775000175100017510000000000013545561736025321 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/ResourceModel/Customer/Indexer/0000775000175100017510000000000013545561733026714 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/ResourceModel/Customer/Indexer/CollectionFactory.php0000664000175100017510000000230413545561733033047 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\ResourceModel\Customer\Indexer; /** * Factory class for @see \Magento\Customer\Model\ResourceModel\Customer\Indexer\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\\Customer\\Model\\ResourceModel\\Customer\\Indexer\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Model\ResourceModel\Customer\Indexer\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Model/ResourceModel/Customer/Indexer/Collection/0000775000175100017510000000000013545561733031007 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/ResourceModel/Customer/Indexer/Collection/Interceptor.php0000664000175100017510000010762213545561733034026 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\ResourceModel\Customer\Indexer\Collection; /** * Interceptor class for @see \Magento\Customer\Model\ResourceModel\Customer\Indexer\Collection */ class Interceptor extends \Magento\Customer\Model\ResourceModel\Customer\Indexer\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\Eav\Model\Config $eavConfig, \Magento\Framework\App\ResourceConnection $resource, \Magento\Eav\Model\EntityFactory $eavEntityFactory, \Magento\Eav\Model\ResourceModel\Helper $resourceHelper, \Magento\Framework\Validator\UniversalFactory $universalFactory, \Magento\Framework\Model\ResourceModel\Db\VersionControl\Snapshot $entitySnapshot, \Magento\Framework\DataObject\Copy\Config $fieldsetConfig, ?\Magento\Framework\DB\Adapter\AdapterInterface $connection = null, $modelName = 'Magento\\Customer\\Model\\Customer') { $this->___init(); parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $eavConfig, $resource, $eavEntityFactory, $resourceHelper, $universalFactory, $entitySnapshot, $fieldsetConfig, $connection, $modelName); } /** * {@inheritdoc} */ public function groupByEmail() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'groupByEmail'); if (!$pluginInfo) { return parent::groupByEmail(); } else { return $this->___callPlugins('groupByEmail', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addNameToSelect() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addNameToSelect'); if (!$pluginInfo) { return parent::addNameToSelect(); } else { return $this->___callPlugins('addNameToSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSelectCountSql() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSelectCountSql'); if (!$pluginInfo) { return parent::getSelectCountSql(); } else { return $this->___callPlugins('getSelectCountSql', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function fetchItem() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'fetchItem'); if (!$pluginInfo) { return parent::fetchItem(); } else { return $this->___callPlugins('fetchItem', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTable($table) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTable'); if (!$pluginInfo) { return parent::getTable($table); } else { return $this->___callPlugins('getTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntity($entity) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntity'); if (!$pluginInfo) { return parent::setEntity($entity); } else { return $this->___callPlugins('setEntity', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntity() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntity'); if (!$pluginInfo) { return parent::getEntity(); } else { return $this->___callPlugins('getEntity', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResource() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); if (!$pluginInfo) { return parent::getResource(); } else { return $this->___callPlugins('getResource', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setObject($object = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setObject'); if (!$pluginInfo) { return parent::setObject($object); } else { return $this->___callPlugins('setObject', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addItem(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addItem'); if (!$pluginInfo) { return parent::addItem($object); } else { return $this->___callPlugins('addItem', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttribute($attributeCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttribute'); if (!$pluginInfo) { return parent::getAttribute($attributeCode); } else { return $this->___callPlugins('getAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addAttributeToFilter($attribute, $condition = null, $joinType = 'inner') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addAttributeToFilter'); if (!$pluginInfo) { return parent::addAttributeToFilter($attribute, $condition, $joinType); } else { return $this->___callPlugins('addAttributeToFilter', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addFieldToFilter($attribute, $condition = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addFieldToFilter'); if (!$pluginInfo) { return parent::addFieldToFilter($attribute, $condition); } else { return $this->___callPlugins('addFieldToFilter', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addAttributeToSort($attribute, $dir = 'ASC') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addAttributeToSort'); if (!$pluginInfo) { return parent::addAttributeToSort($attribute, $dir); } else { return $this->___callPlugins('addAttributeToSort', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addAttributeToSelect($attribute, $joinType = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addAttributeToSelect'); if (!$pluginInfo) { return parent::addAttributeToSelect($attribute, $joinType); } else { return $this->___callPlugins('addAttributeToSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addEntityTypeToSelect($entityType, $prefix) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addEntityTypeToSelect'); if (!$pluginInfo) { return parent::addEntityTypeToSelect($entityType, $prefix); } else { return $this->___callPlugins('addEntityTypeToSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addStaticField($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addStaticField'); if (!$pluginInfo) { return parent::addStaticField($field); } else { return $this->___callPlugins('addStaticField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addExpressionAttributeToSelect($alias, $expression, $attribute) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addExpressionAttributeToSelect'); if (!$pluginInfo) { return parent::addExpressionAttributeToSelect($alias, $expression, $attribute); } else { return $this->___callPlugins('addExpressionAttributeToSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function groupByAttribute($attribute) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'groupByAttribute'); if (!$pluginInfo) { return parent::groupByAttribute($attribute); } else { return $this->___callPlugins('groupByAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function joinAttribute($alias, $attribute, $bind, $filter = null, $joinType = 'inner', $storeId = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'joinAttribute'); if (!$pluginInfo) { return parent::joinAttribute($alias, $attribute, $bind, $filter, $joinType, $storeId); } else { return $this->___callPlugins('joinAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function joinField($alias, $table, $field, $bind, $cond = null, $joinType = 'inner') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'joinField'); if (!$pluginInfo) { return parent::joinField($alias, $table, $field, $bind, $cond, $joinType); } else { return $this->___callPlugins('joinField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function joinTable($table, $bind, $fields = null, $cond = null, $joinType = 'inner') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'joinTable'); if (!$pluginInfo) { return parent::joinTable($table, $bind, $fields, $cond, $joinType); } else { return $this->___callPlugins('joinTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function removeAttributeToSelect($attribute = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'removeAttributeToSelect'); if (!$pluginInfo) { return parent::removeAttributeToSelect($attribute); } else { return $this->___callPlugins('removeAttributeToSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setPage($pageNum, $pageSize) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setPage'); if (!$pluginInfo) { return parent::setPage($pageNum, $pageSize); } else { return $this->___callPlugins('setPage', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($printQuery = false, $logQuery = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($printQuery, $logQuery); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAllIds($limit = null, $offset = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAllIds'); if (!$pluginInfo) { return parent::getAllIds($limit, $offset); } else { return $this->___callPlugins('getAllIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAllIdsSql() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAllIdsSql'); if (!$pluginInfo) { return parent::getAllIdsSql(); } else { return $this->___callPlugins('getAllIdsSql', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save(); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete(); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function importFromArray($arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'importFromArray'); if (!$pluginInfo) { return parent::importFromArray($arr); } else { return $this->___callPlugins('importFromArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function exportToArray() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'exportToArray'); if (!$pluginInfo) { return parent::exportToArray(); } else { return $this->___callPlugins('exportToArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getRowIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getRowIdFieldName'); if (!$pluginInfo) { return parent::getRowIdFieldName(); } else { return $this->___callPlugins('getRowIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setRowIdFieldName($fieldName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setRowIdFieldName'); if (!$pluginInfo) { return parent::setRowIdFieldName($fieldName); } else { return $this->___callPlugins('setRowIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function _loadEntities($printQuery = false, $logQuery = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '_loadEntities'); if (!$pluginInfo) { return parent::_loadEntities($printQuery, $logQuery); } else { return $this->___callPlugins('_loadEntities', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function _loadAttributes($printQuery = false, $logQuery = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '_loadAttributes'); if (!$pluginInfo) { return parent::_loadAttributes($printQuery, $logQuery); } else { return $this->___callPlugins('_loadAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setOrder($attribute, $dir = 'ASC') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrder'); if (!$pluginInfo) { return parent::setOrder($attribute, $dir); } else { return $this->___callPlugins('setOrder', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray($arrAttributes = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray($arrAttributes); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isAttributeAdded($attributeCode) : bool { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isAttributeAdded'); if (!$pluginInfo) { return parent::isAttributeAdded($attributeCode); } else { return $this->___callPlugins('isAttributeAdded', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getLoadedIds() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getLoadedIds'); if (!$pluginInfo) { return parent::getLoadedIds(); } else { return $this->___callPlugins('getLoadedIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clear() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clear'); if (!$pluginInfo) { return parent::clear(); } else { return $this->___callPlugins('clear', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function removeAllItems() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'removeAllItems'); if (!$pluginInfo) { return parent::removeAllItems(); } else { return $this->___callPlugins('removeAllItems', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function removeItemByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'removeItemByKey'); if (!$pluginInfo) { return parent::removeItemByKey($key); } else { return $this->___callPlugins('removeItemByKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getMainTable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMainTable'); if (!$pluginInfo) { return parent::getMainTable(); } else { return $this->___callPlugins('getMainTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addFieldToSelect($field, $alias = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addFieldToSelect'); if (!$pluginInfo) { return parent::addFieldToSelect($field, $alias); } else { return $this->___callPlugins('addFieldToSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function removeFieldFromSelect($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'removeFieldFromSelect'); if (!$pluginInfo) { return parent::removeFieldFromSelect($field); } else { return $this->___callPlugins('removeFieldFromSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function removeAllFieldsFromSelect() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'removeAllFieldsFromSelect'); if (!$pluginInfo) { return parent::removeAllFieldsFromSelect(); } else { return $this->___callPlugins('removeAllFieldsFromSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addBindParam($name, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addBindParam'); if (!$pluginInfo) { return parent::addBindParam($name, $value); } else { return $this->___callPlugins('addBindParam', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setConnection(\Magento\Framework\DB\Adapter\AdapterInterface $conn) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setConnection'); if (!$pluginInfo) { return parent::setConnection($conn); } else { return $this->___callPlugins('setConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSelect() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSelect'); if (!$pluginInfo) { return parent::getSelect(); } else { return $this->___callPlugins('getSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConnection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConnection'); if (!$pluginInfo) { return parent::getConnection(); } else { return $this->___callPlugins('getConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSize() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSize'); if (!$pluginInfo) { return parent::getSize(); } else { return $this->___callPlugins('getSize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSelectSql($stringMode = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSelectSql'); if (!$pluginInfo) { return parent::getSelectSql($stringMode); } else { return $this->___callPlugins('getSelectSql', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addOrder($field, $direction = 'DESC') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addOrder'); if (!$pluginInfo) { return parent::addOrder($field, $direction); } else { return $this->___callPlugins('addOrder', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unshiftOrder($field, $direction = 'DESC') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unshiftOrder'); if (!$pluginInfo) { return parent::unshiftOrder($field, $direction); } else { return $this->___callPlugins('unshiftOrder', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function distinct($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'distinct'); if (!$pluginInfo) { return parent::distinct($flag); } else { return $this->___callPlugins('distinct', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function loadWithFilter($printQuery = false, $logQuery = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'loadWithFilter'); if (!$pluginInfo) { return parent::loadWithFilter($printQuery, $logQuery); } else { return $this->___callPlugins('loadWithFilter', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData(); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function resetData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resetData'); if (!$pluginInfo) { return parent::resetData(); } else { return $this->___callPlugins('resetData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function loadData($printQuery = false, $logQuery = false) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'loadData'); if (!$pluginInfo) { return parent::loadData($printQuery, $logQuery); } else { return $this->___callPlugins('loadData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function printLogQuery($printQuery = false, $logQuery = false, $sql = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'printLogQuery'); if (!$pluginInfo) { return parent::printLogQuery($printQuery, $logQuery, $sql); } else { return $this->___callPlugins('printLogQuery', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addFilterToMap($filter, $alias, $group = 'fields') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addFilterToMap'); if (!$pluginInfo) { return parent::addFilterToMap($filter, $alias, $group); } else { return $this->___callPlugins('addFilterToMap', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function joinExtensionAttribute(\Magento\Framework\Api\ExtensionAttribute\JoinDataInterface $join, \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'joinExtensionAttribute'); if (!$pluginInfo) { return parent::joinExtensionAttribute($join, $extensionAttributesJoinProcessor); } else { return $this->___callPlugins('joinExtensionAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getItemObjectClass() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getItemObjectClass'); if (!$pluginInfo) { return parent::getItemObjectClass(); } else { return $this->___callPlugins('getItemObjectClass', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addFilter($field, $value, $type = 'and') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addFilter'); if (!$pluginInfo) { return parent::addFilter($field, $value, $type); } else { return $this->___callPlugins('addFilter', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFilter($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFilter'); if (!$pluginInfo) { return parent::getFilter($field); } else { return $this->___callPlugins('getFilter', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isLoaded() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isLoaded'); if (!$pluginInfo) { return parent::isLoaded(); } else { return $this->___callPlugins('isLoaded', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCurPage($displacement = 0) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurPage'); if (!$pluginInfo) { return parent::getCurPage($displacement); } else { return $this->___callPlugins('getCurPage', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getLastPageNumber() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getLastPageNumber'); if (!$pluginInfo) { return parent::getLastPageNumber(); } else { return $this->___callPlugins('getLastPageNumber', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getPageSize() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getPageSize'); if (!$pluginInfo) { return parent::getPageSize(); } else { return $this->___callPlugins('getPageSize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFirstItem() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFirstItem'); if (!$pluginInfo) { return parent::getFirstItem(); } else { return $this->___callPlugins('getFirstItem', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getLastItem() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getLastItem'); if (!$pluginInfo) { return parent::getLastItem(); } else { return $this->___callPlugins('getLastItem', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getItems() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getItems'); if (!$pluginInfo) { return parent::getItems(); } else { return $this->___callPlugins('getItems', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getColumnValues($colName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getColumnValues'); if (!$pluginInfo) { return parent::getColumnValues($colName); } else { return $this->___callPlugins('getColumnValues', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getItemsByColumnValue($column, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getItemsByColumnValue'); if (!$pluginInfo) { return parent::getItemsByColumnValue($column, $value); } else { return $this->___callPlugins('getItemsByColumnValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getItemByColumnValue($column, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getItemByColumnValue'); if (!$pluginInfo) { return parent::getItemByColumnValue($column, $value); } else { return $this->___callPlugins('getItemByColumnValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function walk($callback, array $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'walk'); if (!$pluginInfo) { return parent::walk($callback, $args); } else { return $this->___callPlugins('walk', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function each($objMethod, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'each'); if (!$pluginInfo) { return parent::each($objMethod, $args); } else { return $this->___callPlugins('each', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataToAll($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataToAll'); if (!$pluginInfo) { return parent::setDataToAll($key, $value); } else { return $this->___callPlugins('setDataToAll', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setCurPage($page) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCurPage'); if (!$pluginInfo) { return parent::setCurPage($page); } else { return $this->___callPlugins('setCurPage', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setPageSize($size) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setPageSize'); if (!$pluginInfo) { return parent::setPageSize($size); } else { return $this->___callPlugins('setPageSize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setItemObjectClass($className) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setItemObjectClass'); if (!$pluginInfo) { return parent::setItemObjectClass($className); } else { return $this->___callPlugins('setItemObjectClass', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getNewEmptyItem() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getNewEmptyItem'); if (!$pluginInfo) { return parent::getNewEmptyItem(); } else { return $this->___callPlugins('getNewEmptyItem', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toXml() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); if (!$pluginInfo) { return parent::toXml(); } else { return $this->___callPlugins('toXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toOptionArray() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toOptionArray'); if (!$pluginInfo) { return parent::toOptionArray(); } else { return $this->___callPlugins('toOptionArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toOptionHash() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toOptionHash'); if (!$pluginInfo) { return parent::toOptionHash(); } else { return $this->___callPlugins('toOptionHash', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getItemById($idValue) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getItemById'); if (!$pluginInfo) { return parent::getItemById($idValue); } else { return $this->___callPlugins('getItemById', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIterator() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIterator'); if (!$pluginInfo) { return parent::getIterator(); } else { return $this->___callPlugins('getIterator', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function count() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'count'); if (!$pluginInfo) { return parent::count(); } else { return $this->___callPlugins('count', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFlag($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFlag'); if (!$pluginInfo) { return parent::getFlag($flag); } else { return $this->___callPlugins('getFlag', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setFlag($flag, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setFlag'); if (!$pluginInfo) { return parent::setFlag($flag, $value); } else { return $this->___callPlugins('setFlag', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasFlag($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasFlag'); if (!$pluginInfo) { return parent::hasFlag($flag); } else { return $this->___callPlugins('hasFlag', func_get_args(), $pluginInfo); } } } generated/code/Magento/Customer/Model/ResourceModel/Customer/Interceptor.php0000664000175100017510000005104513545561733030332 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\ResourceModel\Customer; /** * Interceptor class for @see \Magento\Customer\Model\ResourceModel\Customer */ class Interceptor extends \Magento\Customer\Model\ResourceModel\Customer implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Eav\Model\Entity\Context $context, \Magento\Framework\Model\ResourceModel\Db\VersionControl\Snapshot $entitySnapshot, \Magento\Framework\Model\ResourceModel\Db\VersionControl\RelationComposite $entityRelationComposite, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Framework\Validator\Factory $validatorFactory, \Magento\Framework\Stdlib\DateTime $dateTime, \Magento\Store\Model\StoreManagerInterface $storeManager, $data = []) { $this->___init(); parent::__construct($context, $entitySnapshot, $entityRelationComposite, $scopeConfig, $validatorFactory, $dateTime, $storeManager, $data); } /** * {@inheritdoc} */ public function loadByEmail(\Magento\Customer\Model\Customer $customer, $email) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'loadByEmail'); if (!$pluginInfo) { return parent::loadByEmail($customer, $email); } else { return $this->___callPlugins('loadByEmail', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function changePassword(\Magento\Customer\Model\Customer $customer, $newPassword) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'changePassword'); if (!$pluginInfo) { return parent::changePassword($customer, $newPassword); } else { return $this->___callPlugins('changePassword', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function findEmailDuplicates() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'findEmailDuplicates'); if (!$pluginInfo) { return parent::findEmailDuplicates(); } else { return $this->___callPlugins('findEmailDuplicates', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function checkCustomerId($customerId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'checkCustomerId'); if (!$pluginInfo) { return parent::checkCustomerId($customerId); } else { return $this->___callPlugins('checkCustomerId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getWebsiteId($customerId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getWebsiteId'); if (!$pluginInfo) { return parent::getWebsiteId($customerId); } else { return $this->___callPlugins('getWebsiteId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setNewIncrementId(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setNewIncrementId'); if (!$pluginInfo) { return parent::setNewIncrementId($object); } else { return $this->___callPlugins('setNewIncrementId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function changeResetPasswordLinkToken(\Magento\Customer\Model\Customer $customer, $passwordLinkToken) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'changeResetPasswordLinkToken'); if (!$pluginInfo) { return parent::changeResetPasswordLinkToken($customer, $passwordLinkToken); } else { return $this->___callPlugins('changeResetPasswordLinkToken', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($object); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setConnection($connection) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setConnection'); if (!$pluginInfo) { return parent::setConnection($connection); } else { return $this->___callPlugins('setConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConnection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConnection'); if (!$pluginInfo) { return parent::getConnection(); } else { return $this->___callPlugins('getConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTable($alias) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTable'); if (!$pluginInfo) { return parent::getTable($alias); } else { return $this->___callPlugins('getTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setType($type) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setType'); if (!$pluginInfo) { return parent::setType($type); } else { return $this->___callPlugins('setType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityType() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityType'); if (!$pluginInfo) { return parent::getEntityType(); } else { return $this->___callPlugins('getEntityType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getType() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getType'); if (!$pluginInfo) { return parent::getType(); } else { return $this->___callPlugins('getType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTypeId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTypeId'); if (!$pluginInfo) { return parent::getTypeId(); } else { return $this->___callPlugins('getTypeId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetAttributes($attributes = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetAttributes'); if (!$pluginInfo) { return parent::unsetAttributes($attributes); } else { return $this->___callPlugins('unsetAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttribute($attribute) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttribute'); if (!$pluginInfo) { return parent::getAttribute($attribute); } else { return $this->___callPlugins('getAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addAttribute(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute, $object = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addAttribute'); if (!$pluginInfo) { return parent::addAttribute($attribute, $object); } else { return $this->___callPlugins('addAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isPartialLoad($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isPartialLoad'); if (!$pluginInfo) { return parent::isPartialLoad($flag); } else { return $this->___callPlugins('isPartialLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isPartialSave($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isPartialSave'); if (!$pluginInfo) { return parent::isPartialSave($flag); } else { return $this->___callPlugins('isPartialSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function loadAllAttributes($object = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'loadAllAttributes'); if (!$pluginInfo) { return parent::loadAllAttributes($object); } else { return $this->___callPlugins('loadAllAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSortedAttributes($setId = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSortedAttributes'); if (!$pluginInfo) { return parent::getSortedAttributes($setId); } else { return $this->___callPlugins('getSortedAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function attributesCompare($firstAttribute, $secondAttribute) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'attributesCompare'); if (!$pluginInfo) { return parent::attributesCompare($firstAttribute, $secondAttribute); } else { return $this->___callPlugins('attributesCompare', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function walkAttributes($partMethod, array $args = [], $collectExceptionMessages = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'walkAttributes'); if (!$pluginInfo) { return parent::walkAttributes($partMethod, $args, $collectExceptionMessages); } else { return $this->___callPlugins('walkAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttributesByCode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttributesByCode'); if (!$pluginInfo) { return parent::getAttributesByCode(); } else { return $this->___callPlugins('getAttributesByCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttributesByTable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttributesByTable'); if (!$pluginInfo) { return parent::getAttributesByTable(); } else { return $this->___callPlugins('getAttributesByTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityTable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityTable'); if (!$pluginInfo) { return parent::getEntityTable(); } else { return $this->___callPlugins('getEntityTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getLinkField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getLinkField'); if (!$pluginInfo) { return parent::getLinkField(); } else { return $this->___callPlugins('getLinkField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityIdField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityIdField'); if (!$pluginInfo) { return parent::getEntityIdField(); } else { return $this->___callPlugins('getEntityIdField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValueEntityIdField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValueEntityIdField'); if (!$pluginInfo) { return parent::getValueEntityIdField(); } else { return $this->___callPlugins('getValueEntityIdField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValueTablePrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValueTablePrefix'); if (!$pluginInfo) { return parent::getValueTablePrefix(); } else { return $this->___callPlugins('getValueTablePrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityTablePrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityTablePrefix'); if (!$pluginInfo) { return parent::getEntityTablePrefix(); } else { return $this->___callPlugins('getEntityTablePrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isAttributeStatic($attribute) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isAttributeStatic'); if (!$pluginInfo) { return parent::isAttributeStatic($attribute); } else { return $this->___callPlugins('isAttributeStatic', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validate($object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validate'); if (!$pluginInfo) { return parent::validate($object); } else { return $this->___callPlugins('validate', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function checkAttributeUniqueValue(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute, $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'checkAttributeUniqueValue'); if (!$pluginInfo) { return parent::checkAttributeUniqueValue($attribute, $object); } else { return $this->___callPlugins('checkAttributeUniqueValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultAttributeSourceModel() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultAttributeSourceModel'); if (!$pluginInfo) { return parent::getDefaultAttributeSourceModel(); } else { return $this->___callPlugins('getDefaultAttributeSourceModel', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($object, $entityId, $attributes = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($object, $entityId, $attributes); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function saveAttribute(\Magento\Framework\DataObject $object, $attributeCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'saveAttribute'); if (!$pluginInfo) { return parent::saveAttribute($object, $attributeCode); } else { return $this->___callPlugins('saveAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete($object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($object); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultAttributes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultAttributes'); if (!$pluginInfo) { return parent::getDefaultAttributes(); } else { return $this->___callPlugins('getDefaultAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad($object); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave($object); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave($object); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete($object); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete($object); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beginTransaction() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beginTransaction'); if (!$pluginInfo) { return parent::beginTransaction(); } else { return $this->___callPlugins('beginTransaction', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addCommitCallback($callback) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addCommitCallback'); if (!$pluginInfo) { return parent::addCommitCallback($callback); } else { return $this->___callPlugins('addCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function commit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'commit'); if (!$pluginInfo) { return parent::commit(); } else { return $this->___callPlugins('commit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function rollBack() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'rollBack'); if (!$pluginInfo) { return parent::rollBack(); } else { return $this->___callPlugins('rollBack', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValidationRulesBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValidationRulesBeforeSave'); if (!$pluginInfo) { return parent::getValidationRulesBeforeSave(); } else { return $this->___callPlugins('getValidationRulesBeforeSave', func_get_args(), $pluginInfo); } } } generated/code/Magento/Customer/Model/ResourceModel/Customer/Proxy.php0000664000175100017510000002505613545561734027161 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\ResourceModel\Customer; /** * Proxy class for @see \Magento\Customer\Model\ResourceModel\Customer */ class Proxy extends \Magento\Customer\Model\ResourceModel\Customer implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Customer\Model\ResourceModel\Customer */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Customer\\Model\\ResourceModel\\Customer', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Customer\Model\ResourceModel\Customer */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function loadByEmail(\Magento\Customer\Model\Customer $customer, $email) { return $this->_getSubject()->loadByEmail($customer, $email); } /** * {@inheritdoc} */ public function changePassword(\Magento\Customer\Model\Customer $customer, $newPassword) { return $this->_getSubject()->changePassword($customer, $newPassword); } /** * {@inheritdoc} */ public function findEmailDuplicates() { return $this->_getSubject()->findEmailDuplicates(); } /** * {@inheritdoc} */ public function checkCustomerId($customerId) { return $this->_getSubject()->checkCustomerId($customerId); } /** * {@inheritdoc} */ public function getWebsiteId($customerId) { return $this->_getSubject()->getWebsiteId($customerId); } /** * {@inheritdoc} */ public function setNewIncrementId(\Magento\Framework\DataObject $object) { return $this->_getSubject()->setNewIncrementId($object); } /** * {@inheritdoc} */ public function changeResetPasswordLinkToken(\Magento\Customer\Model\Customer $customer, $passwordLinkToken) { return $this->_getSubject()->changeResetPasswordLinkToken($customer, $passwordLinkToken); } /** * {@inheritdoc} */ public function save(\Magento\Framework\Model\AbstractModel $object) { return $this->_getSubject()->save($object); } /** * {@inheritdoc} */ public function setConnection($connection) { return $this->_getSubject()->setConnection($connection); } /** * {@inheritdoc} */ public function getConnection() { return $this->_getSubject()->getConnection(); } /** * {@inheritdoc} */ public function getIdFieldName() { return $this->_getSubject()->getIdFieldName(); } /** * {@inheritdoc} */ public function getTable($alias) { return $this->_getSubject()->getTable($alias); } /** * {@inheritdoc} */ public function setType($type) { return $this->_getSubject()->setType($type); } /** * {@inheritdoc} */ public function getEntityType() { return $this->_getSubject()->getEntityType(); } /** * {@inheritdoc} */ public function getType() { return $this->_getSubject()->getType(); } /** * {@inheritdoc} */ public function getTypeId() { return $this->_getSubject()->getTypeId(); } /** * {@inheritdoc} */ public function unsetAttributes($attributes = null) { return $this->_getSubject()->unsetAttributes($attributes); } /** * {@inheritdoc} */ public function getAttribute($attribute) { return $this->_getSubject()->getAttribute($attribute); } /** * {@inheritdoc} */ public function addAttribute(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute, $object = null) { return $this->_getSubject()->addAttribute($attribute, $object); } /** * {@inheritdoc} */ public function isPartialLoad($flag = null) { return $this->_getSubject()->isPartialLoad($flag); } /** * {@inheritdoc} */ public function isPartialSave($flag = null) { return $this->_getSubject()->isPartialSave($flag); } /** * {@inheritdoc} */ public function loadAllAttributes($object = null) { return $this->_getSubject()->loadAllAttributes($object); } /** * {@inheritdoc} */ public function getSortedAttributes($setId = null) { return $this->_getSubject()->getSortedAttributes($setId); } /** * {@inheritdoc} */ public function attributesCompare($firstAttribute, $secondAttribute) { return $this->_getSubject()->attributesCompare($firstAttribute, $secondAttribute); } /** * {@inheritdoc} */ public function walkAttributes($partMethod, array $args = [], $collectExceptionMessages = null) { return $this->_getSubject()->walkAttributes($partMethod, $args, $collectExceptionMessages); } /** * {@inheritdoc} */ public function getAttributesByCode() { return $this->_getSubject()->getAttributesByCode(); } /** * {@inheritdoc} */ public function getAttributesByTable() { return $this->_getSubject()->getAttributesByTable(); } /** * {@inheritdoc} */ public function getEntityTable() { return $this->_getSubject()->getEntityTable(); } /** * {@inheritdoc} */ public function getLinkField() { return $this->_getSubject()->getLinkField(); } /** * {@inheritdoc} */ public function getEntityIdField() { return $this->_getSubject()->getEntityIdField(); } /** * {@inheritdoc} */ public function getValueEntityIdField() { return $this->_getSubject()->getValueEntityIdField(); } /** * {@inheritdoc} */ public function getValueTablePrefix() { return $this->_getSubject()->getValueTablePrefix(); } /** * {@inheritdoc} */ public function getEntityTablePrefix() { return $this->_getSubject()->getEntityTablePrefix(); } /** * {@inheritdoc} */ public function isAttributeStatic($attribute) { return $this->_getSubject()->isAttributeStatic($attribute); } /** * {@inheritdoc} */ public function validate($object) { return $this->_getSubject()->validate($object); } /** * {@inheritdoc} */ public function checkAttributeUniqueValue(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute, $object) { return $this->_getSubject()->checkAttributeUniqueValue($attribute, $object); } /** * {@inheritdoc} */ public function getDefaultAttributeSourceModel() { return $this->_getSubject()->getDefaultAttributeSourceModel(); } /** * {@inheritdoc} */ public function load($object, $entityId, $attributes = []) { return $this->_getSubject()->load($object, $entityId, $attributes); } /** * {@inheritdoc} */ public function saveAttribute(\Magento\Framework\DataObject $object, $attributeCode) { return $this->_getSubject()->saveAttribute($object, $attributeCode); } /** * {@inheritdoc} */ public function delete($object) { return $this->_getSubject()->delete($object); } /** * {@inheritdoc} */ public function getDefaultAttributes() { return $this->_getSubject()->getDefaultAttributes(); } /** * {@inheritdoc} */ public function afterLoad(\Magento\Framework\DataObject $object) { return $this->_getSubject()->afterLoad($object); } /** * {@inheritdoc} */ public function beforeSave(\Magento\Framework\DataObject $object) { return $this->_getSubject()->beforeSave($object); } /** * {@inheritdoc} */ public function afterSave(\Magento\Framework\DataObject $object) { return $this->_getSubject()->afterSave($object); } /** * {@inheritdoc} */ public function beforeDelete(\Magento\Framework\DataObject $object) { return $this->_getSubject()->beforeDelete($object); } /** * {@inheritdoc} */ public function afterDelete(\Magento\Framework\DataObject $object) { return $this->_getSubject()->afterDelete($object); } /** * {@inheritdoc} */ public function beginTransaction() { return $this->_getSubject()->beginTransaction(); } /** * {@inheritdoc} */ public function addCommitCallback($callback) { return $this->_getSubject()->addCommitCallback($callback); } /** * {@inheritdoc} */ public function commit() { return $this->_getSubject()->commit(); } /** * {@inheritdoc} */ public function rollBack() { return $this->_getSubject()->rollBack(); } /** * {@inheritdoc} */ public function getValidationRulesBeforeSave() { return $this->_getSubject()->getValidationRulesBeforeSave(); } } generated/code/Magento/Customer/Model/ResourceModel/Customer/CollectionFactory.php0000664000175100017510000000224313545561736031456 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\ResourceModel\Customer; /** * Factory class for @see \Magento\Customer\Model\ResourceModel\Customer\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\\Customer\\Model\\ResourceModel\\Customer\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Model\ResourceModel\Customer\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Model/ResourceModel/Attribute/0000775000175100017510000000000013545561733025460 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/ResourceModel/Attribute/Interceptor.php0000664000175100017510000003635113545561733030477 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\ResourceModel\Attribute; /** * Interceptor class for @see \Magento\Customer\Model\ResourceModel\Attribute */ class Interceptor extends \Magento\Customer\Model\ResourceModel\Attribute implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\ResourceModel\Db\Context $context, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Eav\Model\ResourceModel\Entity\Type $eavEntityType, $connectionName = null) { $this->___init(); parent::__construct($context, $storeManager, $eavEntityType, $connectionName); } /** * {@inheritdoc} */ public function getScopeValues(\Magento\Eav\Model\Attribute $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getScopeValues'); if (!$pluginInfo) { return parent::getScopeValues($object); } else { return $this->___callPlugins('getScopeValues', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getUsedInForms(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUsedInForms'); if (!$pluginInfo) { return parent::getUsedInForms($object); } else { return $this->___callPlugins('getUsedInForms', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function loadByCode(\Magento\Framework\Model\AbstractModel $object, $entityTypeId, $code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'loadByCode'); if (!$pluginInfo) { return parent::loadByCode($object, $entityTypeId, $code); } else { return $this->___callPlugins('loadByCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function deleteEntity(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'deleteEntity'); if (!$pluginInfo) { return parent::deleteEntity($object); } else { return $this->___callPlugins('deleteEntity', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function saveInSetIncluding(\Magento\Framework\Model\AbstractModel $object, $attributeEntityId = null, $attributeSetId = null, $attributeGroupId = null, $attributeSortOrder = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'saveInSetIncluding'); if (!$pluginInfo) { return parent::saveInSetIncluding($object, $attributeEntityId, $attributeSetId, $attributeGroupId, $attributeSortOrder); } else { return $this->___callPlugins('saveInSetIncluding', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdByCode($entityType, $code) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdByCode'); if (!$pluginInfo) { return parent::getIdByCode($entityType, $code); } else { return $this->___callPlugins('getIdByCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityAttribute($entityAttributeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityAttribute'); if (!$pluginInfo) { return parent::getEntityAttribute($entityAttributeId); } else { return $this->___callPlugins('getEntityAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttributeCodesByFrontendType($frontendType) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttributeCodesByFrontendType'); if (!$pluginInfo) { return parent::getAttributeCodesByFrontendType($frontendType); } else { return $this->___callPlugins('getAttributeCodesByFrontendType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFlatUpdateSelect(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute, $storeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFlatUpdateSelect'); if (!$pluginInfo) { return parent::getFlatUpdateSelect($attribute, $storeId); } else { return $this->___callPlugins('getFlatUpdateSelect', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function describeTable($table) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'describeTable'); if (!$pluginInfo) { return parent::describeTable($table); } else { return $this->___callPlugins('describeTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAdditionalAttributeTable($entityTypeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAdditionalAttributeTable'); if (!$pluginInfo) { return parent::getAdditionalAttributeTable($entityTypeId); } else { return $this->___callPlugins('getAdditionalAttributeTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoreLabelsByAttributeId($attributeId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoreLabelsByAttributeId'); if (!$pluginInfo) { return parent::getStoreLabelsByAttributeId($attributeId); } else { return $this->___callPlugins('getStoreLabelsByAttributeId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValidAttributeIds($attributeIds) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValidAttributeIds'); if (!$pluginInfo) { return parent::getValidAttributeIds($attributeIds); } else { return $this->___callPlugins('getValidAttributeIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getMainTable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMainTable'); if (!$pluginInfo) { return parent::getMainTable(); } else { return $this->___callPlugins('getMainTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTable($tableName) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTable'); if (!$pluginInfo) { return parent::getTable($tableName); } else { return $this->___callPlugins('getTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConnection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConnection'); if (!$pluginInfo) { return parent::getConnection(); } else { return $this->___callPlugins('getConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load(\Magento\Framework\Model\AbstractModel $object, $value, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($object, $value, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($object); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($object); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addUniqueField($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addUniqueField'); if (!$pluginInfo) { return parent::addUniqueField($field); } else { return $this->___callPlugins('addUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function resetUniqueField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resetUniqueField'); if (!$pluginInfo) { return parent::resetUniqueField(); } else { return $this->___callPlugins('resetUniqueField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unserializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unserializeFields'); if (!$pluginInfo) { return parent::unserializeFields($object); } else { return $this->___callPlugins('unserializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getUniqueFields() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getUniqueFields'); if (!$pluginInfo) { return parent::getUniqueFields(); } else { return $this->___callPlugins('getUniqueFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanged($object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanged'); if (!$pluginInfo) { return parent::hasDataChanged($object); } else { return $this->___callPlugins('hasDataChanged', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getChecksum($table) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getChecksum'); if (!$pluginInfo) { return parent::getChecksum($table); } else { return $this->___callPlugins('getChecksum', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad($object); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave($object); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave($object); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete($object); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete($object); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serializeFields(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serializeFields'); if (!$pluginInfo) { return parent::serializeFields($object); } else { return $this->___callPlugins('serializeFields', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beginTransaction() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beginTransaction'); if (!$pluginInfo) { return parent::beginTransaction(); } else { return $this->___callPlugins('beginTransaction', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addCommitCallback($callback) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addCommitCallback'); if (!$pluginInfo) { return parent::addCommitCallback($callback); } else { return $this->___callPlugins('addCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function commit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'commit'); if (!$pluginInfo) { return parent::commit(); } else { return $this->___callPlugins('commit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function rollBack() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'rollBack'); if (!$pluginInfo) { return parent::rollBack(); } else { return $this->___callPlugins('rollBack', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValidationRulesBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValidationRulesBeforeSave'); if (!$pluginInfo) { return parent::getValidationRulesBeforeSave(); } else { return $this->___callPlugins('getValidationRulesBeforeSave', func_get_args(), $pluginInfo); } } } generated/code/Magento/Customer/Model/ResourceModel/Address/0000775000175100017510000000000013545561734025103 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/ResourceModel/Address/Interceptor.php0000664000175100017510000004371213545561733030120 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\ResourceModel\Address; /** * Interceptor class for @see \Magento\Customer\Model\ResourceModel\Address */ class Interceptor extends \Magento\Customer\Model\ResourceModel\Address implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Eav\Model\Entity\Context $context, \Magento\Framework\Model\ResourceModel\Db\VersionControl\Snapshot $entitySnapshot, \Magento\Framework\Model\ResourceModel\Db\VersionControl\RelationComposite $entityRelationComposite, \Magento\Framework\Validator\Factory $validatorFactory, \Magento\Customer\Api\CustomerRepositoryInterface $customerRepository, $data = []) { $this->___init(); parent::__construct($context, $entitySnapshot, $entityRelationComposite, $validatorFactory, $customerRepository, $data); } /** * {@inheritdoc} */ public function getEntityType() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityType'); if (!$pluginInfo) { return parent::getEntityType(); } else { return $this->___callPlugins('getEntityType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete($object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($object); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save(\Magento\Framework\Model\AbstractModel $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($object); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setConnection($connection) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setConnection'); if (!$pluginInfo) { return parent::setConnection($connection); } else { return $this->___callPlugins('setConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getConnection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getConnection'); if (!$pluginInfo) { return parent::getConnection(); } else { return $this->___callPlugins('getConnection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTable($alias) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTable'); if (!$pluginInfo) { return parent::getTable($alias); } else { return $this->___callPlugins('getTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setType($type) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setType'); if (!$pluginInfo) { return parent::setType($type); } else { return $this->___callPlugins('setType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getType() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getType'); if (!$pluginInfo) { return parent::getType(); } else { return $this->___callPlugins('getType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTypeId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTypeId'); if (!$pluginInfo) { return parent::getTypeId(); } else { return $this->___callPlugins('getTypeId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetAttributes($attributes = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetAttributes'); if (!$pluginInfo) { return parent::unsetAttributes($attributes); } else { return $this->___callPlugins('unsetAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttribute($attribute) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttribute'); if (!$pluginInfo) { return parent::getAttribute($attribute); } else { return $this->___callPlugins('getAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addAttribute(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute, $object = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addAttribute'); if (!$pluginInfo) { return parent::addAttribute($attribute, $object); } else { return $this->___callPlugins('addAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isPartialLoad($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isPartialLoad'); if (!$pluginInfo) { return parent::isPartialLoad($flag); } else { return $this->___callPlugins('isPartialLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isPartialSave($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isPartialSave'); if (!$pluginInfo) { return parent::isPartialSave($flag); } else { return $this->___callPlugins('isPartialSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function loadAllAttributes($object = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'loadAllAttributes'); if (!$pluginInfo) { return parent::loadAllAttributes($object); } else { return $this->___callPlugins('loadAllAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSortedAttributes($setId = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSortedAttributes'); if (!$pluginInfo) { return parent::getSortedAttributes($setId); } else { return $this->___callPlugins('getSortedAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function attributesCompare($firstAttribute, $secondAttribute) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'attributesCompare'); if (!$pluginInfo) { return parent::attributesCompare($firstAttribute, $secondAttribute); } else { return $this->___callPlugins('attributesCompare', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function walkAttributes($partMethod, array $args = [], $collectExceptionMessages = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'walkAttributes'); if (!$pluginInfo) { return parent::walkAttributes($partMethod, $args, $collectExceptionMessages); } else { return $this->___callPlugins('walkAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttributesByCode() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttributesByCode'); if (!$pluginInfo) { return parent::getAttributesByCode(); } else { return $this->___callPlugins('getAttributesByCode', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttributesByTable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttributesByTable'); if (!$pluginInfo) { return parent::getAttributesByTable(); } else { return $this->___callPlugins('getAttributesByTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityTable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityTable'); if (!$pluginInfo) { return parent::getEntityTable(); } else { return $this->___callPlugins('getEntityTable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getLinkField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getLinkField'); if (!$pluginInfo) { return parent::getLinkField(); } else { return $this->___callPlugins('getLinkField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityIdField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityIdField'); if (!$pluginInfo) { return parent::getEntityIdField(); } else { return $this->___callPlugins('getEntityIdField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValueEntityIdField() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValueEntityIdField'); if (!$pluginInfo) { return parent::getValueEntityIdField(); } else { return $this->___callPlugins('getValueEntityIdField', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValueTablePrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValueTablePrefix'); if (!$pluginInfo) { return parent::getValueTablePrefix(); } else { return $this->___callPlugins('getValueTablePrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityTablePrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityTablePrefix'); if (!$pluginInfo) { return parent::getEntityTablePrefix(); } else { return $this->___callPlugins('getEntityTablePrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isAttributeStatic($attribute) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isAttributeStatic'); if (!$pluginInfo) { return parent::isAttributeStatic($attribute); } else { return $this->___callPlugins('isAttributeStatic', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validate($object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validate'); if (!$pluginInfo) { return parent::validate($object); } else { return $this->___callPlugins('validate', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setNewIncrementId(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setNewIncrementId'); if (!$pluginInfo) { return parent::setNewIncrementId($object); } else { return $this->___callPlugins('setNewIncrementId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function checkAttributeUniqueValue(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute, $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'checkAttributeUniqueValue'); if (!$pluginInfo) { return parent::checkAttributeUniqueValue($attribute, $object); } else { return $this->___callPlugins('checkAttributeUniqueValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultAttributeSourceModel() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultAttributeSourceModel'); if (!$pluginInfo) { return parent::getDefaultAttributeSourceModel(); } else { return $this->___callPlugins('getDefaultAttributeSourceModel', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($object, $entityId, $attributes = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($object, $entityId, $attributes); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function saveAttribute(\Magento\Framework\DataObject $object, $attributeCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'saveAttribute'); if (!$pluginInfo) { return parent::saveAttribute($object, $attributeCode); } else { return $this->___callPlugins('saveAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultAttributes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultAttributes'); if (!$pluginInfo) { return parent::getDefaultAttributes(); } else { return $this->___callPlugins('getDefaultAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad($object); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave($object); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave($object); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete($object); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete(\Magento\Framework\DataObject $object) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete($object); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beginTransaction() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beginTransaction'); if (!$pluginInfo) { return parent::beginTransaction(); } else { return $this->___callPlugins('beginTransaction', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addCommitCallback($callback) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addCommitCallback'); if (!$pluginInfo) { return parent::addCommitCallback($callback); } else { return $this->___callPlugins('addCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function commit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'commit'); if (!$pluginInfo) { return parent::commit(); } else { return $this->___callPlugins('commit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function rollBack() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'rollBack'); if (!$pluginInfo) { return parent::rollBack(); } else { return $this->___callPlugins('rollBack', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getValidationRulesBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getValidationRulesBeforeSave'); if (!$pluginInfo) { return parent::getValidationRulesBeforeSave(); } else { return $this->___callPlugins('getValidationRulesBeforeSave', func_get_args(), $pluginInfo); } } } generated/code/Magento/Customer/Model/ResourceModel/Address/CollectionFactory.php0000664000175100017510000000223713545561734031243 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\ResourceModel\Address; /** * Factory class for @see \Magento\Customer\Model\ResourceModel\Address\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\\Customer\\Model\\ResourceModel\\Address\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Model\ResourceModel\Address\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Model/ResourceModel/GroupRepository/0000775000175100017510000000000013545561734026712 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/ResourceModel/GroupRepository/Interceptor.php0000664000175100017510000000621513545561734031725 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\ResourceModel\GroupRepository; /** * Interceptor class for @see \Magento\Customer\Model\ResourceModel\GroupRepository */ class Interceptor extends \Magento\Customer\Model\ResourceModel\GroupRepository implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Customer\Model\GroupRegistry $groupRegistry, \Magento\Customer\Model\GroupFactory $groupFactory, \Magento\Customer\Api\Data\GroupInterfaceFactory $groupDataFactory, \Magento\Customer\Model\ResourceModel\Group $groupResourceModel, \Magento\Framework\Reflection\DataObjectProcessor $dataObjectProcessor, \Magento\Customer\Api\Data\GroupSearchResultsInterfaceFactory $searchResultsFactory, \Magento\Tax\Api\TaxClassRepositoryInterface $taxClassRepositoryInterface, \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor, ?\Magento\Framework\Api\SearchCriteria\CollectionProcessorInterface $collectionProcessor = null) { $this->___init(); parent::__construct($groupRegistry, $groupFactory, $groupDataFactory, $groupResourceModel, $dataObjectProcessor, $searchResultsFactory, $taxClassRepositoryInterface, $extensionAttributesJoinProcessor, $collectionProcessor); } /** * {@inheritdoc} */ public function save(\Magento\Customer\Api\Data\GroupInterface $group) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save($group); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getById($id) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getById'); if (!$pluginInfo) { return parent::getById($id); } else { return $this->___callPlugins('getById', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getList(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getList'); if (!$pluginInfo) { return parent::getList($searchCriteria); } else { return $this->___callPlugins('getList', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete(\Magento\Customer\Api\Data\GroupInterface $group) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete($group); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function deleteById($id) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'deleteById'); if (!$pluginInfo) { return parent::deleteById($id); } else { return $this->___callPlugins('deleteById', func_get_args(), $pluginInfo); } } } generated/code/Magento/Customer/Model/ResourceModel/Form/0000775000175100017510000000000013545561735024422 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/ResourceModel/Form/Attribute/0000775000175100017510000000000013545561735026365 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/ResourceModel/Form/Attribute/CollectionFactory.php0000664000175100017510000000227413545561735032526 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\ResourceModel\Form\Attribute; /** * Factory class for @see \Magento\Customer\Model\ResourceModel\Form\Attribute\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\\Customer\\Model\\ResourceModel\\Form\\Attribute\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Model\ResourceModel\Form\Attribute\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Model/ResourceModel/Group/0000775000175100017510000000000013545561736024614 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/ResourceModel/Group/CollectionFactory.php0000664000175100017510000000222713545561736030753 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\ResourceModel\Group; /** * Factory class for @see \Magento\Customer\Model\ResourceModel\Group\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\\Customer\\Model\\ResourceModel\\Group\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Model\ResourceModel\Group\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Model/Metadata/0000775000175100017510000000000013545561733022465 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/Metadata/AttributeMetadataCache/0000775000175100017510000000000013545561733027015 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/Metadata/AttributeMetadataCache/Proxy.php0000664000175100017510000000526113545561733030653 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\Metadata\AttributeMetadataCache; /** * Proxy class for @see \Magento\Customer\Model\Metadata\AttributeMetadataCache */ class Proxy extends \Magento\Customer\Model\Metadata\AttributeMetadataCache implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Customer\Model\Metadata\AttributeMetadataCache */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Customer\\Model\\Metadata\\AttributeMetadataCache', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Customer\Model\Metadata\AttributeMetadataCache */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function load($entityType, $suffix = '') { return $this->_getSubject()->load($entityType, $suffix); } /** * {@inheritdoc} */ public function save($entityType, array $attributes, $suffix = '') { return $this->_getSubject()->save($entityType, $attributes, $suffix); } /** * {@inheritdoc} */ public function clean() { return $this->_getSubject()->clean(); } } generated/code/Magento/Customer/Model/CustomerFactory.php0000664000175100017510000000207513545561733024613 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model; /** * Factory class for @see \Magento\Customer\Model\Customer */ class CustomerFactory { /** * 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\\Customer\\Model\\Customer') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Model\Customer */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Model/Customer/0000775000175100017510000000000013545561734022547 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/Customer/Interceptor.php0000664000175100017510000013550113545561734025563 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\Customer; /** * Interceptor class for @see \Magento\Customer\Model\Customer */ class Interceptor extends \Magento\Customer\Model\Customer implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Eav\Model\Config $config, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Customer\Model\ResourceModel\Customer $resource, \Magento\Customer\Model\Config\Share $configShare, \Magento\Customer\Model\AddressFactory $addressFactory, \Magento\Customer\Model\ResourceModel\Address\CollectionFactory $addressesFactory, \Magento\Framework\Mail\Template\TransportBuilder $transportBuilder, \Magento\Customer\Api\GroupRepositoryInterface $groupRepository, \Magento\Framework\Encryption\EncryptorInterface $encryptor, \Magento\Framework\Stdlib\DateTime $dateTime, \Magento\Customer\Api\Data\CustomerInterfaceFactory $customerDataFactory, \Magento\Framework\Reflection\DataObjectProcessor $dataObjectProcessor, \Magento\Framework\Api\DataObjectHelper $dataObjectHelper, \Magento\Customer\Api\CustomerMetadataInterface $metadataService, \Magento\Framework\Indexer\IndexerRegistry $indexerRegistry, ?\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [], ?\Magento\Customer\Model\AccountConfirmation $accountConfirmation = null) { $this->___init(); parent::__construct($context, $registry, $storeManager, $config, $scopeConfig, $resource, $configShare, $addressFactory, $addressesFactory, $transportBuilder, $groupRepository, $encryptor, $dateTime, $customerDataFactory, $dataObjectProcessor, $dataObjectHelper, $metadataService, $indexerRegistry, $resourceCollection, $data, $accountConfirmation); } /** * {@inheritdoc} */ public function _construct() { $pluginInfo = $this->pluginList->getNext($this->subjectType, '_construct'); if (!$pluginInfo) { return parent::_construct(); } else { return $this->___callPlugins('_construct', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataModel() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataModel'); if (!$pluginInfo) { return parent::getDataModel(); } else { return $this->___callPlugins('getDataModel', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function updateData($customer) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'updateData'); if (!$pluginInfo) { return parent::updateData($customer); } else { return $this->___callPlugins('updateData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSharingConfig() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSharingConfig'); if (!$pluginInfo) { return parent::getSharingConfig(); } else { return $this->___callPlugins('getSharingConfig', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function authenticate($login, $password) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'authenticate'); if (!$pluginInfo) { return parent::authenticate($login, $password); } else { return $this->___callPlugins('authenticate', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function loadByEmail($customerEmail) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'loadByEmail'); if (!$pluginInfo) { return parent::loadByEmail($customerEmail); } else { return $this->___callPlugins('loadByEmail', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function changePassword($newPassword) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'changePassword'); if (!$pluginInfo) { return parent::changePassword($newPassword); } else { return $this->___callPlugins('changePassword', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getName'); if (!$pluginInfo) { return parent::getName(); } else { return $this->___callPlugins('getName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addAddress(\Magento\Customer\Model\Address $address) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addAddress'); if (!$pluginInfo) { return parent::addAddress($address); } else { return $this->___callPlugins('addAddress', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAddressById($addressId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAddressById'); if (!$pluginInfo) { return parent::getAddressById($addressId); } else { return $this->___callPlugins('getAddressById', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAddressItemById($addressId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAddressItemById'); if (!$pluginInfo) { return parent::getAddressItemById($addressId); } else { return $this->___callPlugins('getAddressItemById', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAddressCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAddressCollection'); if (!$pluginInfo) { return parent::getAddressCollection(); } else { return $this->___callPlugins('getAddressCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAddressesCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAddressesCollection'); if (!$pluginInfo) { return parent::getAddressesCollection(); } else { return $this->___callPlugins('getAddressesCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAddresses() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAddresses'); if (!$pluginInfo) { return parent::getAddresses(); } else { return $this->___callPlugins('getAddresses', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttributes() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttributes'); if (!$pluginInfo) { return parent::getAttributes(); } else { return $this->___callPlugins('getAttributes', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttribute($attributeCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttribute'); if (!$pluginInfo) { return parent::getAttribute($attributeCode); } else { return $this->___callPlugins('getAttribute', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setPassword($password) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setPassword'); if (!$pluginInfo) { return parent::setPassword($password); } else { return $this->___callPlugins('setPassword', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hashPassword($password, $salt = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hashPassword'); if (!$pluginInfo) { return parent::hashPassword($password, $salt); } else { return $this->___callPlugins('hashPassword', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validatePassword($password) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validatePassword'); if (!$pluginInfo) { return parent::validatePassword($password); } else { return $this->___callPlugins('validatePassword', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function encryptPassword($password) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'encryptPassword'); if (!$pluginInfo) { return parent::encryptPassword($password); } else { return $this->___callPlugins('encryptPassword', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function decryptPassword($password) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'decryptPassword'); if (!$pluginInfo) { return parent::decryptPassword($password); } else { return $this->___callPlugins('decryptPassword', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getPrimaryAddress($attributeCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getPrimaryAddress'); if (!$pluginInfo) { return parent::getPrimaryAddress($attributeCode); } else { return $this->___callPlugins('getPrimaryAddress', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getPrimaryBillingAddress() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getPrimaryBillingAddress'); if (!$pluginInfo) { return parent::getPrimaryBillingAddress(); } else { return $this->___callPlugins('getPrimaryBillingAddress', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultBillingAddress() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultBillingAddress'); if (!$pluginInfo) { return parent::getDefaultBillingAddress(); } else { return $this->___callPlugins('getDefaultBillingAddress', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getPrimaryShippingAddress() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getPrimaryShippingAddress'); if (!$pluginInfo) { return parent::getPrimaryShippingAddress(); } else { return $this->___callPlugins('getPrimaryShippingAddress', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDefaultShippingAddress() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultShippingAddress'); if (!$pluginInfo) { return parent::getDefaultShippingAddress(); } else { return $this->___callPlugins('getDefaultShippingAddress', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getPrimaryAddressIds() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getPrimaryAddressIds'); if (!$pluginInfo) { return parent::getPrimaryAddressIds(); } else { return $this->___callPlugins('getPrimaryAddressIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getPrimaryAddresses() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getPrimaryAddresses'); if (!$pluginInfo) { return parent::getPrimaryAddresses(); } else { return $this->___callPlugins('getPrimaryAddresses', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAdditionalAddresses() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAdditionalAddresses'); if (!$pluginInfo) { return parent::getAdditionalAddresses(); } else { return $this->___callPlugins('getAdditionalAddresses', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isAddressPrimary(\Magento\Customer\Model\Address $address) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isAddressPrimary'); if (!$pluginInfo) { return parent::isAddressPrimary($address); } else { return $this->___callPlugins('isAddressPrimary', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function sendNewAccountEmail($type = 'registered', $backUrl = '', $storeId = '0') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'sendNewAccountEmail'); if (!$pluginInfo) { return parent::sendNewAccountEmail($type, $backUrl, $storeId); } else { return $this->___callPlugins('sendNewAccountEmail', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isConfirmationRequired() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isConfirmationRequired'); if (!$pluginInfo) { return parent::isConfirmationRequired(); } else { return $this->___callPlugins('isConfirmationRequired', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getRandomConfirmationKey() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getRandomConfirmationKey'); if (!$pluginInfo) { return parent::getRandomConfirmationKey(); } else { return $this->___callPlugins('getRandomConfirmationKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function sendPasswordReminderEmail() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'sendPasswordReminderEmail'); if (!$pluginInfo) { return parent::sendPasswordReminderEmail(); } else { return $this->___callPlugins('sendPasswordReminderEmail', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function sendPasswordResetConfirmationEmail() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'sendPasswordResetConfirmationEmail'); if (!$pluginInfo) { return parent::sendPasswordResetConfirmationEmail(); } else { return $this->___callPlugins('sendPasswordResetConfirmationEmail', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getGroupId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getGroupId'); if (!$pluginInfo) { return parent::getGroupId(); } else { return $this->___callPlugins('getGroupId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getTaxClassId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTaxClassId'); if (!$pluginInfo) { return parent::getTaxClassId(); } else { return $this->___callPlugins('getTaxClassId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStore() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStore'); if (!$pluginInfo) { return parent::getStore(); } else { return $this->___callPlugins('getStore', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSharedStoreIds() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSharedStoreIds'); if (!$pluginInfo) { return parent::getSharedStoreIds(); } else { return $this->___callPlugins('getSharedStoreIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSharedWebsiteIds() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSharedWebsiteIds'); if (!$pluginInfo) { return parent::getSharedWebsiteIds(); } else { return $this->___callPlugins('getSharedWebsiteIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getAttributeSetId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAttributeSetId'); if (!$pluginInfo) { return parent::getAttributeSetId(); } else { return $this->___callPlugins('getAttributeSetId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setStore(\Magento\Store\Model\Store $store) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setStore'); if (!$pluginInfo) { return parent::setStore($store); } else { return $this->___callPlugins('setStore', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validate() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validate'); if (!$pluginInfo) { return parent::validate(); } else { return $this->___callPlugins('validate', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetSubscription() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetSubscription'); if (!$pluginInfo) { return parent::unsetSubscription(); } else { return $this->___callPlugins('unsetSubscription', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function cleanAllAddresses() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanAllAddresses'); if (!$pluginInfo) { return parent::cleanAllAddresses(); } else { return $this->___callPlugins('cleanAllAddresses', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addError($error) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addError'); if (!$pluginInfo) { return parent::addError($error); } else { return $this->___callPlugins('addError', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getErrors() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getErrors'); if (!$pluginInfo) { return parent::getErrors(); } else { return $this->___callPlugins('getErrors', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function resetErrors() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resetErrors'); if (!$pluginInfo) { return parent::resetErrors(); } else { return $this->___callPlugins('resetErrors', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete(); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave(); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDeleteCommit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDeleteCommit'); if (!$pluginInfo) { return parent::afterDeleteCommit(); } else { return $this->___callPlugins('afterDeleteCommit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function reindex() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'reindex'); if (!$pluginInfo) { return parent::reindex(); } else { return $this->___callPlugins('reindex', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCreatedAtTimestamp() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCreatedAtTimestamp'); if (!$pluginInfo) { return parent::getCreatedAtTimestamp(); } else { return $this->___callPlugins('getCreatedAtTimestamp', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function reset() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'reset'); if (!$pluginInfo) { return parent::reset(); } else { return $this->___callPlugins('reset', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDeleteable() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleteable'); if (!$pluginInfo) { return parent::isDeleteable(); } else { return $this->___callPlugins('isDeleteable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIsDeleteable($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIsDeleteable'); if (!$pluginInfo) { return parent::setIsDeleteable($value); } else { return $this->___callPlugins('setIsDeleteable', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isReadonly() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isReadonly'); if (!$pluginInfo) { return parent::isReadonly(); } else { return $this->___callPlugins('isReadonly', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIsReadonly($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIsReadonly'); if (!$pluginInfo) { return parent::setIsReadonly($value); } else { return $this->___callPlugins('setIsReadonly', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityType() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityType'); if (!$pluginInfo) { return parent::getEntityType(); } else { return $this->___callPlugins('getEntityType', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function changeResetPasswordLinkToken($passwordLinkToken) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'changeResetPasswordLinkToken'); if (!$pluginInfo) { return parent::changeResetPasswordLinkToken($passwordLinkToken); } else { return $this->___callPlugins('changeResetPasswordLinkToken', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isResetPasswordLinkTokenExpired() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isResetPasswordLinkTokenExpired'); if (!$pluginInfo) { return parent::isResetPasswordLinkTokenExpired(); } else { return $this->___callPlugins('isResetPasswordLinkTokenExpired', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResetPasswordLinkExpirationPeriod() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResetPasswordLinkExpirationPeriod'); if (!$pluginInfo) { return parent::getResetPasswordLinkExpirationPeriod(); } else { return $this->___callPlugins('getResetPasswordLinkExpirationPeriod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isCustomerLocked() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isCustomerLocked'); if (!$pluginInfo) { return parent::isCustomerLocked(); } else { return $this->___callPlugins('isCustomerLocked', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getPasswordConfirm() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getPasswordConfirm'); if (!$pluginInfo) { return parent::getPasswordConfirm(); } else { return $this->___callPlugins('getPasswordConfirm', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getPassword() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getPassword'); if (!$pluginInfo) { return parent::getPassword(); } else { return $this->___callPlugins('getPassword', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIdFieldName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIdFieldName'); if (!$pluginInfo) { return parent::setIdFieldName($name); } else { return $this->___callPlugins('setIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId'); if (!$pluginInfo) { return parent::getId(); } else { return $this->___callPlugins('getId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setId($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setId'); if (!$pluginInfo) { return parent::setId($value); } else { return $this->___callPlugins('setId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDeleted($isDeleted = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleted'); if (!$pluginInfo) { return parent::isDeleted($isDeleted); } else { return $this->___callPlugins('isDeleted', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanges() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanges'); if (!$pluginInfo) { return parent::hasDataChanges(); } else { return $this->___callPlugins('hasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setData($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); if (!$pluginInfo) { return parent::setData($key, $value); } else { return $this->___callPlugins('setData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); if (!$pluginInfo) { return parent::unsetData($key); } else { return $this->___callPlugins('unsetData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataChanges($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataChanges'); if (!$pluginInfo) { return parent::setDataChanges($value); } else { return $this->___callPlugins('setDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOrigData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOrigData'); if (!$pluginInfo) { return parent::getOrigData($key); } else { return $this->___callPlugins('getOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setOrigData($key = null, $data = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrigData'); if (!$pluginInfo) { return parent::setOrigData($key, $data); } else { return $this->___callPlugins('setOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function dataHasChangedFor($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dataHasChangedFor'); if (!$pluginInfo) { return parent::dataHasChangedFor($field); } else { return $this->___callPlugins('dataHasChangedFor', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceName'); if (!$pluginInfo) { return parent::getResourceName(); } else { return $this->___callPlugins('getResourceName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceCollection'); if (!$pluginInfo) { return parent::getResourceCollection(); } else { return $this->___callPlugins('getResourceCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCollection'); if (!$pluginInfo) { return parent::getCollection(); } else { return $this->___callPlugins('getCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($modelId, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($modelId, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeLoad($identifier, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeLoad'); if (!$pluginInfo) { return parent::beforeLoad($identifier, $field); } else { return $this->___callPlugins('beforeLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad(); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isSaveAllowed() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isSaveAllowed'); if (!$pluginInfo) { return parent::isSaveAllowed(); } else { return $this->___callPlugins('isSaveAllowed', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setHasDataChanges($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHasDataChanges'); if (!$pluginInfo) { return parent::setHasDataChanges($flag); } else { return $this->___callPlugins('setHasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save(); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterCommitCallback() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterCommitCallback'); if (!$pluginInfo) { return parent::afterCommitCallback(); } else { return $this->___callPlugins('afterCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isObjectNew($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isObjectNew'); if (!$pluginInfo) { return parent::isObjectNew($flag); } else { return $this->___callPlugins('isObjectNew', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave(); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validateBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateBeforeSave'); if (!$pluginInfo) { return parent::validateBeforeSave(); } else { return $this->___callPlugins('validateBeforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCacheTags() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCacheTags'); if (!$pluginInfo) { return parent::getCacheTags(); } else { return $this->___callPlugins('getCacheTags', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function cleanModelCache() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanModelCache'); if (!$pluginInfo) { return parent::cleanModelCache(); } else { return $this->___callPlugins('cleanModelCache', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete(); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete(); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResource() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); if (!$pluginInfo) { return parent::getResource(); } else { return $this->___callPlugins('getResource', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityId'); if (!$pluginInfo) { return parent::getEntityId(); } else { return $this->___callPlugins('getEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntityId($entityId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityId'); if (!$pluginInfo) { return parent::setEntityId($entityId); } else { return $this->___callPlugins('setEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clearInstance() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clearInstance'); if (!$pluginInfo) { return parent::clearInstance(); } else { return $this->___callPlugins('clearInstance', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoredData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoredData'); if (!$pluginInfo) { return parent::getStoredData(); } else { return $this->___callPlugins('getStoredData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEventPrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEventPrefix'); if (!$pluginInfo) { return parent::getEventPrefix(); } else { return $this->___callPlugins('getEventPrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addData(array $arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); if (!$pluginInfo) { return parent::addData($arr); } else { return $this->___callPlugins('addData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData($key = '', $index = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData($key, $index); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByPath($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); if (!$pluginInfo) { return parent::getDataByPath($path); } else { return $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); if (!$pluginInfo) { return parent::getDataByKey($key); } else { return $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataUsingMethod($key, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); if (!$pluginInfo) { return parent::setDataUsingMethod($key, $args); } else { return $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataUsingMethod($key, $args = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); if (!$pluginInfo) { return parent::getDataUsingMethod($key, $args); } else { return $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasData($key = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); if (!$pluginInfo) { return parent::hasData($key); } else { return $this->___callPlugins('hasData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray($keys); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); if (!$pluginInfo) { return parent::convertToArray($keys); } else { return $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); if (!$pluginInfo) { return parent::toXml($keys, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('toXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); if (!$pluginInfo) { return parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); if (!$pluginInfo) { return parent::toJson($keys); } else { return $this->___callPlugins('toJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); if (!$pluginInfo) { return parent::convertToJson($keys); } else { return $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toString($format = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); if (!$pluginInfo) { return parent::toString($format); } else { return $this->___callPlugins('toString', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function __call($method, $args) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); if (!$pluginInfo) { return parent::__call($method, $args); } else { return $this->___callPlugins('__call', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isEmpty() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); if (!$pluginInfo) { return parent::isEmpty(); } else { return $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); if (!$pluginInfo) { return parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); } else { return $this->___callPlugins('serialize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function debug($data = null, &$objects = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); if (!$pluginInfo) { return parent::debug($data, $objects); } else { return $this->___callPlugins('debug', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetSet($offset, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); if (!$pluginInfo) { return parent::offsetSet($offset, $value); } else { return $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetExists($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); if (!$pluginInfo) { return parent::offsetExists($offset); } else { return $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetUnset($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); if (!$pluginInfo) { return parent::offsetUnset($offset); } else { return $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetGet($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); if (!$pluginInfo) { return parent::offsetGet($offset); } else { return $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo); } } } generated/code/Magento/Customer/Model/AddressFactory.php0000664000175100017510000000207113545561734024374 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model; /** * Factory class for @see \Magento\Customer\Model\Address */ class AddressFactory { /** * 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\\Customer\\Model\\Address') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Model\Address */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Model/Config/0000775000175100017510000000000013545561734022153 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/Config/Share/0000775000175100017510000000000013545561734023215 5ustar webmasterwebmastergenerated/code/Magento/Customer/Model/Config/Share/Interceptor.php0000664000175100017510000006242713545561734026237 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model\Config\Share; /** * Interceptor class for @see \Magento\Customer\Model\Config\Share */ class Interceptor extends \Magento\Customer\Model\Config\Share 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\Store\Model\StoreManagerInterface $storeManager, \Magento\Customer\Model\ResourceModel\Customer $customerResource, ?\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, ?\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = []) { $this->___init(); parent::__construct($context, $registry, $config, $cacheTypeList, $storeManager, $customerResource, $resource, $resourceCollection, $data); } /** * {@inheritdoc} */ public function isGlobalScope() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isGlobalScope'); if (!$pluginInfo) { return parent::isGlobalScope(); } else { return $this->___callPlugins('isGlobalScope', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isWebsiteScope() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isWebsiteScope'); if (!$pluginInfo) { return parent::isWebsiteScope(); } else { return $this->___callPlugins('isWebsiteScope', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toOptionArray() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toOptionArray'); if (!$pluginInfo) { return parent::toOptionArray(); } else { return $this->___callPlugins('toOptionArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave(); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getSharedWebsiteIds($websiteId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getSharedWebsiteIds'); if (!$pluginInfo) { return parent::getSharedWebsiteIds($websiteId); } else { return $this->___callPlugins('getSharedWebsiteIds', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isValueChanged() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isValueChanged'); if (!$pluginInfo) { return parent::isValueChanged(); } else { return $this->___callPlugins('isValueChanged', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOldValue() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOldValue'); if (!$pluginInfo) { return parent::getOldValue(); } else { return $this->___callPlugins('getOldValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFieldsetDataValue($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFieldsetDataValue'); if (!$pluginInfo) { return parent::getFieldsetDataValue($key); } else { return $this->___callPlugins('getFieldsetDataValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave(); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete(); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIdFieldName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIdFieldName'); if (!$pluginInfo) { return parent::setIdFieldName($name); } else { return $this->___callPlugins('setIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId'); if (!$pluginInfo) { return parent::getId(); } else { return $this->___callPlugins('getId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setId($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setId'); if (!$pluginInfo) { return parent::setId($value); } else { return $this->___callPlugins('setId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDeleted($isDeleted = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleted'); if (!$pluginInfo) { return parent::isDeleted($isDeleted); } else { return $this->___callPlugins('isDeleted', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanges() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanges'); if (!$pluginInfo) { return parent::hasDataChanges(); } else { return $this->___callPlugins('hasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setData($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); if (!$pluginInfo) { return parent::setData($key, $value); } else { return $this->___callPlugins('setData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); if (!$pluginInfo) { return parent::unsetData($key); } else { return $this->___callPlugins('unsetData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataChanges($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataChanges'); if (!$pluginInfo) { return parent::setDataChanges($value); } else { return $this->___callPlugins('setDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOrigData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOrigData'); if (!$pluginInfo) { return parent::getOrigData($key); } else { return $this->___callPlugins('getOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setOrigData($key = null, $data = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrigData'); if (!$pluginInfo) { return parent::setOrigData($key, $data); } else { return $this->___callPlugins('setOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function dataHasChangedFor($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dataHasChangedFor'); if (!$pluginInfo) { return parent::dataHasChangedFor($field); } else { return $this->___callPlugins('dataHasChangedFor', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceName'); if (!$pluginInfo) { return parent::getResourceName(); } else { return $this->___callPlugins('getResourceName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceCollection'); if (!$pluginInfo) { return parent::getResourceCollection(); } else { return $this->___callPlugins('getResourceCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCollection'); if (!$pluginInfo) { return parent::getCollection(); } else { return $this->___callPlugins('getCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($modelId, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($modelId, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeLoad($identifier, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeLoad'); if (!$pluginInfo) { return parent::beforeLoad($identifier, $field); } else { return $this->___callPlugins('beforeLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad(); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isSaveAllowed() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isSaveAllowed'); if (!$pluginInfo) { return parent::isSaveAllowed(); } else { return $this->___callPlugins('isSaveAllowed', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setHasDataChanges($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHasDataChanges'); if (!$pluginInfo) { return parent::setHasDataChanges($flag); } else { return $this->___callPlugins('setHasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save(); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterCommitCallback() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterCommitCallback'); if (!$pluginInfo) { return parent::afterCommitCallback(); } else { return $this->___callPlugins('afterCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isObjectNew($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isObjectNew'); if (!$pluginInfo) { return parent::isObjectNew($flag); } else { return $this->___callPlugins('isObjectNew', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validateBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateBeforeSave'); if (!$pluginInfo) { return parent::validateBeforeSave(); } else { return $this->___callPlugins('validateBeforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCacheTags() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCacheTags'); if (!$pluginInfo) { return parent::getCacheTags(); } else { return $this->___callPlugins('getCacheTags', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function cleanModelCache() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanModelCache'); if (!$pluginInfo) { return parent::cleanModelCache(); } else { return $this->___callPlugins('cleanModelCache', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete(); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete(); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDeleteCommit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDeleteCommit'); if (!$pluginInfo) { return parent::afterDeleteCommit(); } else { return $this->___callPlugins('afterDeleteCommit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResource() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); if (!$pluginInfo) { return parent::getResource(); } else { return $this->___callPlugins('getResource', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityId'); if (!$pluginInfo) { return parent::getEntityId(); } else { return $this->___callPlugins('getEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntityId($entityId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityId'); if (!$pluginInfo) { return parent::setEntityId($entityId); } else { return $this->___callPlugins('setEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clearInstance() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clearInstance'); if (!$pluginInfo) { return parent::clearInstance(); } else { return $this->___callPlugins('clearInstance', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoredData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoredData'); if (!$pluginInfo) { return parent::getStoredData(); } else { return $this->___callPlugins('getStoredData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEventPrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEventPrefix'); if (!$pluginInfo) { return parent::getEventPrefix(); } else { return $this->___callPlugins('getEventPrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addData(array $arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); if (!$pluginInfo) { return parent::addData($arr); } else { return $this->___callPlugins('addData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData($key = '', $index = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData($key, $index); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByPath($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); if (!$pluginInfo) { return parent::getDataByPath($path); } else { return $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); if (!$pluginInfo) { return parent::getDataByKey($key); } else { return $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataUsingMethod($key, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); if (!$pluginInfo) { return parent::setDataUsingMethod($key, $args); } else { return $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataUsingMethod($key, $args = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); if (!$pluginInfo) { return parent::getDataUsingMethod($key, $args); } else { return $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasData($key = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); if (!$pluginInfo) { return parent::hasData($key); } else { return $this->___callPlugins('hasData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray($keys); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); if (!$pluginInfo) { return parent::convertToArray($keys); } else { return $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); if (!$pluginInfo) { return parent::toXml($keys, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('toXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); if (!$pluginInfo) { return parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); if (!$pluginInfo) { return parent::toJson($keys); } else { return $this->___callPlugins('toJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); if (!$pluginInfo) { return parent::convertToJson($keys); } else { return $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toString($format = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); if (!$pluginInfo) { return parent::toString($format); } else { return $this->___callPlugins('toString', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function __call($method, $args) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); if (!$pluginInfo) { return parent::__call($method, $args); } else { return $this->___callPlugins('__call', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isEmpty() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); if (!$pluginInfo) { return parent::isEmpty(); } else { return $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); if (!$pluginInfo) { return parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); } else { return $this->___callPlugins('serialize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function debug($data = null, &$objects = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); if (!$pluginInfo) { return parent::debug($data, $objects); } else { return $this->___callPlugins('debug', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetSet($offset, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); if (!$pluginInfo) { return parent::offsetSet($offset, $value); } else { return $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetExists($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); if (!$pluginInfo) { return parent::offsetExists($offset); } else { return $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetUnset($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); if (!$pluginInfo) { return parent::offsetUnset($offset); } else { return $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetGet($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); if (!$pluginInfo) { return parent::offsetGet($offset); } else { return $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo); } } } generated/code/Magento/Customer/Model/GroupFactory.php0000664000175100017510000000206113545561734024102 0ustar webmasterwebmaster<?php namespace Magento\Customer\Model; /** * Factory class for @see \Magento\Customer\Model\Group */ class GroupFactory { /** * 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\\Customer\\Model\\Group') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Model\Group */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Api/0000775000175100017510000000000013545561734020417 5ustar webmasterwebmastergenerated/code/Magento/Customer/Api/CustomerRepositoryInterface/0000775000175100017510000000000013545561733026140 5ustar webmasterwebmastergenerated/code/Magento/Customer/Api/CustomerRepositoryInterface/Proxy.php0000664000175100017510000000633013545561733027774 0ustar webmasterwebmaster<?php namespace Magento\Customer\Api\CustomerRepositoryInterface; /** * Proxy class for @see \Magento\Customer\Api\CustomerRepositoryInterface */ class Proxy implements \Magento\Customer\Api\CustomerRepositoryInterface, \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Customer\Api\CustomerRepositoryInterface */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Customer\\Api\\CustomerRepositoryInterface', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Customer\Api\CustomerRepositoryInterface */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function save(\Magento\Customer\Api\Data\CustomerInterface $customer, $passwordHash = null) { return $this->_getSubject()->save($customer, $passwordHash); } /** * {@inheritdoc} */ public function get($email, $websiteId = null) { return $this->_getSubject()->get($email, $websiteId); } /** * {@inheritdoc} */ public function getById($customerId) { return $this->_getSubject()->getById($customerId); } /** * {@inheritdoc} */ public function getList(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria) { return $this->_getSubject()->getList($searchCriteria); } /** * {@inheritdoc} */ public function delete(\Magento\Customer\Api\Data\CustomerInterface $customer) { return $this->_getSubject()->delete($customer); } /** * {@inheritdoc} */ public function deleteById($customerId) { return $this->_getSubject()->deleteById($customerId); } } generated/code/Magento/Customer/Api/Data/0000775000175100017510000000000013545561735021271 5ustar webmasterwebmastergenerated/code/Magento/Customer/Api/Data/CustomerInterfaceFactory.php0000664000175100017510000000215613545561734026757 0ustar webmasterwebmaster<?php namespace Magento\Customer\Api\Data; /** * Factory class for @see \Magento\Customer\Api\Data\CustomerInterface */ class CustomerInterfaceFactory { /** * 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\\Customer\\Api\\Data\\CustomerInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Api\Data\CustomerInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Api/Data/GroupInterfaceFactory.php0000664000175100017510000000214213545561734026245 0ustar webmasterwebmaster<?php namespace Magento\Customer\Api\Data; /** * Factory class for @see \Magento\Customer\Api\Data\GroupInterface */ class GroupInterfaceFactory { /** * 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\\Customer\\Api\\Data\\GroupInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Api\Data\GroupInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Api/Data/GroupSearchResultsInterfaceFactory.php0000664000175100017510000000222613545561734030760 0ustar webmasterwebmaster<?php namespace Magento\Customer\Api\Data; /** * Factory class for @see \Magento\Customer\Api\Data\GroupSearchResultsInterface */ class GroupSearchResultsInterfaceFactory { /** * 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\\Customer\\Api\\Data\\GroupSearchResultsInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Api\Data\GroupSearchResultsInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Api/Data/OptionInterfaceFactory.php0000664000175100017510000000214613545561734026425 0ustar webmasterwebmaster<?php namespace Magento\Customer\Api\Data; /** * Factory class for @see \Magento\Customer\Api\Data\OptionInterface */ class OptionInterfaceFactory { /** * 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\\Customer\\Api\\Data\\OptionInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Api\Data\OptionInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Api/Data/ValidationRuleInterfaceFactory.php0000664000175100017510000000220613545561735030075 0ustar webmasterwebmaster<?php namespace Magento\Customer\Api\Data; /** * Factory class for @see \Magento\Customer\Api\Data\ValidationRuleInterface */ class ValidationRuleInterfaceFactory { /** * 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\\Customer\\Api\\Data\\ValidationRuleInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Api\Data\ValidationRuleInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Api/Data/AttributeMetadataInterfaceFactory.php0000664000175100017510000000222213545561735030555 0ustar webmasterwebmaster<?php namespace Magento\Customer\Api\Data; /** * Factory class for @see \Magento\Customer\Api\Data\AttributeMetadataInterface */ class AttributeMetadataInterfaceFactory { /** * 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\\Customer\\Api\\Data\\AttributeMetadataInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Customer\Api\Data\AttributeMetadataInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Customer/Api/GroupManagementInterface/0000775000175100017510000000000013545561734025331 5ustar webmasterwebmastergenerated/code/Magento/Customer/Api/GroupManagementInterface/Proxy.php0000664000175100017510000000560213545561734027166 0ustar webmasterwebmaster<?php namespace Magento\Customer\Api\GroupManagementInterface; /** * Proxy class for @see \Magento\Customer\Api\GroupManagementInterface */ class Proxy implements \Magento\Customer\Api\GroupManagementInterface, \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Customer\Api\GroupManagementInterface */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Customer\\Api\\GroupManagementInterface', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Customer\Api\GroupManagementInterface */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function isReadonly($id) { return $this->_getSubject()->isReadonly($id); } /** * {@inheritdoc} */ public function getDefaultGroup($storeId = null) { return $this->_getSubject()->getDefaultGroup($storeId); } /** * {@inheritdoc} */ public function getNotLoggedInGroup() { return $this->_getSubject()->getNotLoggedInGroup(); } /** * {@inheritdoc} */ public function getLoggedInGroups() { return $this->_getSubject()->getLoggedInGroups(); } /** * {@inheritdoc} */ public function getAllCustomersGroup() { return $this->_getSubject()->getAllCustomersGroup(); } } generated/code/Magento/Tax/0000775000175100017510000000000013545561734016641 5ustar webmasterwebmastergenerated/code/Magento/Tax/Model/0000775000175100017510000000000013545561734017701 5ustar webmasterwebmastergenerated/code/Magento/Tax/Model/ResourceModel/0000775000175100017510000000000013545561734022451 5ustar webmasterwebmastergenerated/code/Magento/Tax/Model/ResourceModel/TaxClass/0000775000175100017510000000000013545561734024173 5ustar webmasterwebmastergenerated/code/Magento/Tax/Model/ResourceModel/TaxClass/CollectionFactory.php0000664000175100017510000000221713545561734030331 0ustar webmasterwebmaster<?php namespace Magento\Tax\Model\ResourceModel\TaxClass; /** * Factory class for @see \Magento\Tax\Model\ResourceModel\TaxClass\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\\Tax\\Model\\ResourceModel\\TaxClass\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Tax\Model\ResourceModel\TaxClass\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Tax/Model/ClassModelFactory.php0000664000175100017510000000206113545561734023767 0ustar webmasterwebmaster<?php namespace Magento\Tax\Model; /** * Factory class for @see \Magento\Tax\Model\ClassModel */ class ClassModelFactory { /** * 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\\Tax\\Model\\ClassModel') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Tax\Model\ClassModel */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Tax/Api/0000775000175100017510000000000013545561734017352 5ustar webmasterwebmastergenerated/code/Magento/Tax/Api/Data/0000775000175100017510000000000013545561734020223 5ustar webmasterwebmastergenerated/code/Magento/Tax/Api/Data/TaxClassSearchResultsInterfaceFactory.php0000664000175100017510000000221613545561734030340 0ustar webmasterwebmaster<?php namespace Magento\Tax\Api\Data; /** * Factory class for @see \Magento\Tax\Api\Data\TaxClassSearchResultsInterface */ class TaxClassSearchResultsInterfaceFactory { /** * 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\\Tax\\Api\\Data\\TaxClassSearchResultsInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Tax\Api\Data\TaxClassSearchResultsInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Backend/0000775000175100017510000000000013545561735017435 5ustar webmasterwebmastergenerated/code/Magento/Backend/App/0000775000175100017510000000000013545561735020155 5ustar webmasterwebmastergenerated/code/Magento/Backend/App/Request/0000775000175100017510000000000013545561735021605 5ustar webmasterwebmastergenerated/code/Magento/Backend/App/Request/PathInfoProcessor/0000775000175100017510000000000013545561735025215 5ustar webmasterwebmastergenerated/code/Magento/Backend/App/Request/PathInfoProcessor/Proxy.php0000664000175100017510000000453713545561735027060 0ustar webmasterwebmaster<?php namespace Magento\Backend\App\Request\PathInfoProcessor; /** * Proxy class for @see \Magento\Backend\App\Request\PathInfoProcessor */ class Proxy extends \Magento\Backend\App\Request\PathInfoProcessor implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Backend\App\Request\PathInfoProcessor */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Backend\\App\\Request\\PathInfoProcessor', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Backend\App\Request\PathInfoProcessor */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function process(\Magento\Framework\App\RequestInterface $request, $pathInfo) { return $this->_getSubject()->process($request, $pathInfo); } } generated/code/Magento/Config/0000775000175100017510000000000013545561736017314 5ustar webmasterwebmastergenerated/code/Magento/Config/App/0000775000175100017510000000000013545561736020034 5ustar webmasterwebmastergenerated/code/Magento/Config/App/Config/0000775000175100017510000000000013545561736021241 5ustar webmasterwebmastergenerated/code/Magento/Config/App/Config/Type/0000775000175100017510000000000013545561736022162 5ustar webmasterwebmastergenerated/code/Magento/Config/App/Config/Type/System/0000775000175100017510000000000013545561736023446 5ustar webmasterwebmastergenerated/code/Magento/Config/App/Config/Type/System/Reader/0000775000175100017510000000000013545561736024650 5ustar webmasterwebmastergenerated/code/Magento/Config/App/Config/Type/System/Reader/Proxy.php0000664000175100017510000000440713545561736026507 0ustar webmasterwebmaster<?php namespace Magento\Config\App\Config\Type\System\Reader; /** * Proxy class for @see \Magento\Config\App\Config\Type\System\Reader */ class Proxy extends \Magento\Config\App\Config\Type\System\Reader implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Config\App\Config\Type\System\Reader */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Config\\App\\Config\\Type\\System\\Reader', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Config\App\Config\Type\System\Reader */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function read() { return $this->_getSubject()->read(); } } generated/code/Magento/Config/App/Config/Source/0000775000175100017510000000000013545561736022501 5ustar webmasterwebmastergenerated/code/Magento/Config/App/Config/Source/DumpConfigSourceAggregated/0000775000175100017510000000000013545561736027670 5ustar webmasterwebmastergenerated/code/Magento/Config/App/Config/Source/DumpConfigSourceAggregated/Interceptor.php0000664000175100017510000000257013545561736032703 0ustar webmasterwebmaster<?php namespace Magento\Config\App\Config\Source\DumpConfigSourceAggregated; /** * Interceptor class for @see \Magento\Config\App\Config\Source\DumpConfigSourceAggregated */ class Interceptor extends \Magento\Config\App\Config\Source\DumpConfigSourceAggregated implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Config\Model\Config\Export\ExcludeList $excludeList, array $sources = [], ?\Magento\Config\Model\Config\TypePool $typePool = null, array $rules = []) { $this->___init(); parent::__construct($excludeList, $sources, $typePool, $rules); } /** * {@inheritdoc} */ public function get($path = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'get'); if (!$pluginInfo) { return parent::get($path); } else { return $this->___callPlugins('get', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getExcludedFields() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getExcludedFields'); if (!$pluginInfo) { return parent::getExcludedFields(); } else { return $this->___callPlugins('getExcludedFields', func_get_args(), $pluginInfo); } } } generated/code/Magento/Config/Model/0000775000175100017510000000000013545561736020354 5ustar webmasterwebmastergenerated/code/Magento/Config/Model/ResourceModel/0000775000175100017510000000000013545561736023124 5ustar webmasterwebmastergenerated/code/Magento/Config/Model/ResourceModel/Config/0000775000175100017510000000000013545561736024331 5ustar webmasterwebmastergenerated/code/Magento/Config/Model/ResourceModel/Config/Data/0000775000175100017510000000000013545561736025202 5ustar webmasterwebmastergenerated/code/Magento/Config/Model/ResourceModel/Config/Data/Collection/0000775000175100017510000000000013545561736027275 5ustar webmasterwebmastergenerated/code/Magento/Config/Model/ResourceModel/Config/Data/Collection/Proxy.php0000664000175100017510000003403313545561736031132 0ustar webmasterwebmaster<?php namespace Magento\Config\Model\ResourceModel\Config\Data\Collection; /** * Proxy class for @see \Magento\Config\Model\ResourceModel\Config\Data\Collection */ class Proxy extends \Magento\Config\Model\ResourceModel\Config\Data\Collection implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Config\Model\ResourceModel\Config\Data\Collection */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Config\\Model\\ResourceModel\\Config\\Data\\Collection', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Config\Model\ResourceModel\Config\Data\Collection */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function addScopeFilter($scope, $scopeId, $section) { return $this->_getSubject()->addScopeFilter($scope, $scopeId, $section); } /** * {@inheritdoc} */ public function addPathFilter($section) { return $this->_getSubject()->addPathFilter($section); } /** * {@inheritdoc} */ public function addValueFilter($value) { return $this->_getSubject()->addValueFilter($value); } /** * {@inheritdoc} */ public function getMainTable() { return $this->_getSubject()->getMainTable(); } /** * {@inheritdoc} */ public function setMainTable($table) { return $this->_getSubject()->setMainTable($table); } /** * {@inheritdoc} */ public function getSelect() { return $this->_getSubject()->getSelect(); } /** * {@inheritdoc} */ public function addFieldToSelect($field, $alias = null) { return $this->_getSubject()->addFieldToSelect($field, $alias); } /** * {@inheritdoc} */ public function addExpressionFieldToSelect($alias, $expression, $fields) { return $this->_getSubject()->addExpressionFieldToSelect($alias, $expression, $fields); } /** * {@inheritdoc} */ public function removeFieldFromSelect($field, $isAlias = false) { return $this->_getSubject()->removeFieldFromSelect($field, $isAlias); } /** * {@inheritdoc} */ public function removeAllFieldsFromSelect() { return $this->_getSubject()->removeAllFieldsFromSelect(); } /** * {@inheritdoc} */ public function setModel($model) { return $this->_getSubject()->setModel($model); } /** * {@inheritdoc} */ public function getModelName() { return $this->_getSubject()->getModelName(); } /** * {@inheritdoc} */ public function setResourceModel($model) { return $this->_getSubject()->setResourceModel($model); } /** * {@inheritdoc} */ public function getResourceModelName() { return $this->_getSubject()->getResourceModelName(); } /** * {@inheritdoc} */ public function getResource() { return $this->_getSubject()->getResource(); } /** * {@inheritdoc} */ public function getTable($table) { return $this->_getSubject()->getTable($table); } /** * {@inheritdoc} */ public function getAllIds() { return $this->_getSubject()->getAllIds(); } /** * {@inheritdoc} */ public function join($table, $cond, $cols = '*') { return $this->_getSubject()->join($table, $cond, $cols); } /** * {@inheritdoc} */ public function setResetItemsDataChanged($flag) { return $this->_getSubject()->setResetItemsDataChanged($flag); } /** * {@inheritdoc} */ public function resetItemsDataChanged() { return $this->_getSubject()->resetItemsDataChanged(); } /** * {@inheritdoc} */ public function save() { return $this->_getSubject()->save(); } /** * {@inheritdoc} */ public function addBindParam($name, $value) { return $this->_getSubject()->addBindParam($name, $value); } /** * {@inheritdoc} */ public function getIdFieldName() { return $this->_getSubject()->getIdFieldName(); } /** * {@inheritdoc} */ public function setConnection(\Magento\Framework\DB\Adapter\AdapterInterface $conn) { return $this->_getSubject()->setConnection($conn); } /** * {@inheritdoc} */ public function getConnection() { return $this->_getSubject()->getConnection(); } /** * {@inheritdoc} */ public function getSize() { return $this->_getSubject()->getSize(); } /** * {@inheritdoc} */ public function getSelectCountSql() { return $this->_getSubject()->getSelectCountSql(); } /** * {@inheritdoc} */ public function getSelectSql($stringMode = false) { return $this->_getSubject()->getSelectSql($stringMode); } /** * {@inheritdoc} */ public function setOrder($field, $direction = 'DESC') { return $this->_getSubject()->setOrder($field, $direction); } /** * {@inheritdoc} */ public function addOrder($field, $direction = 'DESC') { return $this->_getSubject()->addOrder($field, $direction); } /** * {@inheritdoc} */ public function unshiftOrder($field, $direction = 'DESC') { return $this->_getSubject()->unshiftOrder($field, $direction); } /** * {@inheritdoc} */ public function addFieldToFilter($field, $condition = null) { return $this->_getSubject()->addFieldToFilter($field, $condition); } /** * {@inheritdoc} */ public function distinct($flag) { return $this->_getSubject()->distinct($flag); } /** * {@inheritdoc} */ public function load($printQuery = false, $logQuery = false) { return $this->_getSubject()->load($printQuery, $logQuery); } /** * {@inheritdoc} */ public function loadWithFilter($printQuery = false, $logQuery = false) { return $this->_getSubject()->loadWithFilter($printQuery, $logQuery); } /** * {@inheritdoc} */ public function fetchItem() { return $this->_getSubject()->fetchItem(); } /** * {@inheritdoc} */ public function getData() { return $this->_getSubject()->getData(); } /** * {@inheritdoc} */ public function resetData() { return $this->_getSubject()->resetData(); } /** * {@inheritdoc} */ public function loadData($printQuery = false, $logQuery = false) { return $this->_getSubject()->loadData($printQuery, $logQuery); } /** * {@inheritdoc} */ public function printLogQuery($printQuery = false, $logQuery = false, $sql = null) { return $this->_getSubject()->printLogQuery($printQuery, $logQuery, $sql); } /** * {@inheritdoc} */ public function addFilterToMap($filter, $alias, $group = 'fields') { return $this->_getSubject()->addFilterToMap($filter, $alias, $group); } /** * {@inheritdoc} */ public function joinExtensionAttribute(\Magento\Framework\Api\ExtensionAttribute\JoinDataInterface $join, \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor) { return $this->_getSubject()->joinExtensionAttribute($join, $extensionAttributesJoinProcessor); } /** * {@inheritdoc} */ public function getItemObjectClass() { return $this->_getSubject()->getItemObjectClass(); } /** * {@inheritdoc} */ public function addFilter($field, $value, $type = 'and') { return $this->_getSubject()->addFilter($field, $value, $type); } /** * {@inheritdoc} */ public function getFilter($field) { return $this->_getSubject()->getFilter($field); } /** * {@inheritdoc} */ public function isLoaded() { return $this->_getSubject()->isLoaded(); } /** * {@inheritdoc} */ public function getCurPage($displacement = 0) { return $this->_getSubject()->getCurPage($displacement); } /** * {@inheritdoc} */ public function getLastPageNumber() { return $this->_getSubject()->getLastPageNumber(); } /** * {@inheritdoc} */ public function getPageSize() { return $this->_getSubject()->getPageSize(); } /** * {@inheritdoc} */ public function getFirstItem() { return $this->_getSubject()->getFirstItem(); } /** * {@inheritdoc} */ public function getLastItem() { return $this->_getSubject()->getLastItem(); } /** * {@inheritdoc} */ public function getItems() { return $this->_getSubject()->getItems(); } /** * {@inheritdoc} */ public function getColumnValues($colName) { return $this->_getSubject()->getColumnValues($colName); } /** * {@inheritdoc} */ public function getItemsByColumnValue($column, $value) { return $this->_getSubject()->getItemsByColumnValue($column, $value); } /** * {@inheritdoc} */ public function getItemByColumnValue($column, $value) { return $this->_getSubject()->getItemByColumnValue($column, $value); } /** * {@inheritdoc} */ public function addItem(\Magento\Framework\DataObject $item) { return $this->_getSubject()->addItem($item); } /** * {@inheritdoc} */ public function removeItemByKey($key) { return $this->_getSubject()->removeItemByKey($key); } /** * {@inheritdoc} */ public function removeAllItems() { return $this->_getSubject()->removeAllItems(); } /** * {@inheritdoc} */ public function clear() { return $this->_getSubject()->clear(); } /** * {@inheritdoc} */ public function walk($callback, array $args = []) { return $this->_getSubject()->walk($callback, $args); } /** * {@inheritdoc} */ public function each($objMethod, $args = []) { return $this->_getSubject()->each($objMethod, $args); } /** * {@inheritdoc} */ public function setDataToAll($key, $value = null) { return $this->_getSubject()->setDataToAll($key, $value); } /** * {@inheritdoc} */ public function setCurPage($page) { return $this->_getSubject()->setCurPage($page); } /** * {@inheritdoc} */ public function setPageSize($size) { return $this->_getSubject()->setPageSize($size); } /** * {@inheritdoc} */ public function setItemObjectClass($className) { return $this->_getSubject()->setItemObjectClass($className); } /** * {@inheritdoc} */ public function getNewEmptyItem() { return $this->_getSubject()->getNewEmptyItem(); } /** * {@inheritdoc} */ public function toXml() { return $this->_getSubject()->toXml(); } /** * {@inheritdoc} */ public function toArray($arrRequiredFields = []) { return $this->_getSubject()->toArray($arrRequiredFields); } /** * {@inheritdoc} */ public function toOptionArray() { return $this->_getSubject()->toOptionArray(); } /** * {@inheritdoc} */ public function toOptionHash() { return $this->_getSubject()->toOptionHash(); } /** * {@inheritdoc} */ public function getItemById($idValue) { return $this->_getSubject()->getItemById($idValue); } /** * {@inheritdoc} */ public function getIterator() { return $this->_getSubject()->getIterator(); } /** * {@inheritdoc} */ public function count() { return $this->_getSubject()->count(); } /** * {@inheritdoc} */ public function getFlag($flag) { return $this->_getSubject()->getFlag($flag); } /** * {@inheritdoc} */ public function setFlag($flag, $value = null) { return $this->_getSubject()->setFlag($flag, $value); } /** * {@inheritdoc} */ public function hasFlag($flag) { return $this->_getSubject()->hasFlag($flag); } } generated/code/Magento/Config/Model/ResourceModel/Config/Data/CollectionFactory.php0000664000175100017510000000225013545561736031335 0ustar webmasterwebmaster<?php namespace Magento\Config\Model\ResourceModel\Config\Data; /** * Factory class for @see \Magento\Config\Model\ResourceModel\Config\Data\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\\Config\\Model\\ResourceModel\\Config\\Data\\Collection') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Config\Model\ResourceModel\Config\Data\Collection */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Config/Model/Config/0000775000175100017510000000000013545561747021563 5ustar webmasterwebmastergenerated/code/Magento/Config/Model/Config/StructureFactory.php0000664000175100017510000000212613545561736025623 0ustar webmasterwebmaster<?php namespace Magento\Config\Model\Config; /** * Factory class for @see \Magento\Config\Model\Config\Structure */ class StructureFactory { /** * 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\\Config\\Model\\Config\\Structure') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Config\Model\Config\Structure */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Config/Model/Config/Backend/0000775000175100017510000000000013545561747023112 5ustar webmasterwebmastergenerated/code/Magento/Config/Model/Config/Backend/Encrypted/0000775000175100017510000000000013545561747025047 5ustar webmasterwebmastergenerated/code/Magento/Config/Model/Config/Backend/Encrypted/Interceptor.php0000664000175100017510000006017513545561747030067 0ustar webmasterwebmaster<?php namespace Magento\Config\Model\Config\Backend\Encrypted; /** * Interceptor class for @see \Magento\Config\Model\Config\Backend\Encrypted */ class Interceptor extends \Magento\Config\Model\Config\Backend\Encrypted 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\Encryption\EncryptorInterface $encryptor, ?\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, ?\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = []) { $this->___init(); parent::__construct($context, $registry, $config, $cacheTypeList, $encryptor, $resource, $resourceCollection, $data); } /** * {@inheritdoc} */ public function beforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeSave'); if (!$pluginInfo) { return parent::beforeSave(); } else { return $this->___callPlugins('beforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function processValue($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'processValue'); if (!$pluginInfo) { return parent::processValue($value); } else { return $this->___callPlugins('processValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isValueChanged() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isValueChanged'); if (!$pluginInfo) { return parent::isValueChanged(); } else { return $this->___callPlugins('isValueChanged', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOldValue() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOldValue'); if (!$pluginInfo) { return parent::getOldValue(); } else { return $this->___callPlugins('getOldValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getFieldsetDataValue($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFieldsetDataValue'); if (!$pluginInfo) { return parent::getFieldsetDataValue($key); } else { return $this->___callPlugins('getFieldsetDataValue', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterSave'); if (!$pluginInfo) { return parent::afterSave(); } else { return $this->___callPlugins('afterSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDelete'); if (!$pluginInfo) { return parent::afterDelete(); } else { return $this->___callPlugins('afterDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setIdFieldName($name) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setIdFieldName'); if (!$pluginInfo) { return parent::setIdFieldName($name); } else { return $this->___callPlugins('setIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getIdFieldName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIdFieldName'); if (!$pluginInfo) { return parent::getIdFieldName(); } else { return $this->___callPlugins('getIdFieldName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getId'); if (!$pluginInfo) { return parent::getId(); } else { return $this->___callPlugins('getId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setId($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setId'); if (!$pluginInfo) { return parent::setId($value); } else { return $this->___callPlugins('setId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isDeleted($isDeleted = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isDeleted'); if (!$pluginInfo) { return parent::isDeleted($isDeleted); } else { return $this->___callPlugins('isDeleted', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasDataChanges() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDataChanges'); if (!$pluginInfo) { return parent::hasDataChanges(); } else { return $this->___callPlugins('hasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setData($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); if (!$pluginInfo) { return parent::setData($key, $value); } else { return $this->___callPlugins('setData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function unsetData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); if (!$pluginInfo) { return parent::unsetData($key); } else { return $this->___callPlugins('unsetData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataChanges($value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataChanges'); if (!$pluginInfo) { return parent::setDataChanges($value); } else { return $this->___callPlugins('setDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getOrigData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOrigData'); if (!$pluginInfo) { return parent::getOrigData($key); } else { return $this->___callPlugins('getOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setOrigData($key = null, $data = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setOrigData'); if (!$pluginInfo) { return parent::setOrigData($key, $data); } else { return $this->___callPlugins('setOrigData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function dataHasChangedFor($field) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dataHasChangedFor'); if (!$pluginInfo) { return parent::dataHasChangedFor($field); } else { return $this->___callPlugins('dataHasChangedFor', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceName() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceName'); if (!$pluginInfo) { return parent::getResourceName(); } else { return $this->___callPlugins('getResourceName', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResourceCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResourceCollection'); if (!$pluginInfo) { return parent::getResourceCollection(); } else { return $this->___callPlugins('getResourceCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCollection'); if (!$pluginInfo) { return parent::getCollection(); } else { return $this->___callPlugins('getCollection', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function load($modelId, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); if (!$pluginInfo) { return parent::load($modelId, $field); } else { return $this->___callPlugins('load', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeLoad($identifier, $field = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeLoad'); if (!$pluginInfo) { return parent::beforeLoad($identifier, $field); } else { return $this->___callPlugins('beforeLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterLoad() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterLoad'); if (!$pluginInfo) { return parent::afterLoad(); } else { return $this->___callPlugins('afterLoad', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isSaveAllowed() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isSaveAllowed'); if (!$pluginInfo) { return parent::isSaveAllowed(); } else { return $this->___callPlugins('isSaveAllowed', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setHasDataChanges($flag) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHasDataChanges'); if (!$pluginInfo) { return parent::setHasDataChanges($flag); } else { return $this->___callPlugins('setHasDataChanges', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function save() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); if (!$pluginInfo) { return parent::save(); } else { return $this->___callPlugins('save', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterCommitCallback() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterCommitCallback'); if (!$pluginInfo) { return parent::afterCommitCallback(); } else { return $this->___callPlugins('afterCommitCallback', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isObjectNew($flag = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isObjectNew'); if (!$pluginInfo) { return parent::isObjectNew($flag); } else { return $this->___callPlugins('isObjectNew', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function validateBeforeSave() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateBeforeSave'); if (!$pluginInfo) { return parent::validateBeforeSave(); } else { return $this->___callPlugins('validateBeforeSave', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getCacheTags() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCacheTags'); if (!$pluginInfo) { return parent::getCacheTags(); } else { return $this->___callPlugins('getCacheTags', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function cleanModelCache() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'cleanModelCache'); if (!$pluginInfo) { return parent::cleanModelCache(); } else { return $this->___callPlugins('cleanModelCache', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function delete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'delete'); if (!$pluginInfo) { return parent::delete(); } else { return $this->___callPlugins('delete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function beforeDelete() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'beforeDelete'); if (!$pluginInfo) { return parent::beforeDelete(); } else { return $this->___callPlugins('beforeDelete', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function afterDeleteCommit() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'afterDeleteCommit'); if (!$pluginInfo) { return parent::afterDeleteCommit(); } else { return $this->___callPlugins('afterDeleteCommit', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getResource() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResource'); if (!$pluginInfo) { return parent::getResource(); } else { return $this->___callPlugins('getResource', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEntityId() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEntityId'); if (!$pluginInfo) { return parent::getEntityId(); } else { return $this->___callPlugins('getEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setEntityId($entityId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setEntityId'); if (!$pluginInfo) { return parent::setEntityId($entityId); } else { return $this->___callPlugins('setEntityId', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function clearInstance() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clearInstance'); if (!$pluginInfo) { return parent::clearInstance(); } else { return $this->___callPlugins('clearInstance', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getStoredData() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStoredData'); if (!$pluginInfo) { return parent::getStoredData(); } else { return $this->___callPlugins('getStoredData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getEventPrefix() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getEventPrefix'); if (!$pluginInfo) { return parent::getEventPrefix(); } else { return $this->___callPlugins('getEventPrefix', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function addData(array $arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); if (!$pluginInfo) { return parent::addData($arr); } else { return $this->___callPlugins('addData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getData($key = '', $index = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); if (!$pluginInfo) { return parent::getData($key, $index); } else { return $this->___callPlugins('getData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByPath($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); if (!$pluginInfo) { return parent::getDataByPath($path); } else { return $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); if (!$pluginInfo) { return parent::getDataByKey($key); } else { return $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function setDataUsingMethod($key, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); if (!$pluginInfo) { return parent::setDataUsingMethod($key, $args); } else { return $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function getDataUsingMethod($key, $args = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); if (!$pluginInfo) { return parent::getDataUsingMethod($key, $args); } else { return $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function hasData($key = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); if (!$pluginInfo) { return parent::hasData($key); } else { return $this->___callPlugins('hasData', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); if (!$pluginInfo) { return parent::toArray($keys); } else { return $this->___callPlugins('toArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); if (!$pluginInfo) { return parent::convertToArray($keys); } else { return $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); if (!$pluginInfo) { return parent::toXml($keys, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('toXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); if (!$pluginInfo) { return parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); } else { return $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); if (!$pluginInfo) { return parent::toJson($keys); } else { return $this->___callPlugins('toJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function convertToJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); if (!$pluginInfo) { return parent::convertToJson($keys); } else { return $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function toString($format = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); if (!$pluginInfo) { return parent::toString($format); } else { return $this->___callPlugins('toString', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function __call($method, $args) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); if (!$pluginInfo) { return parent::__call($method, $args); } else { return $this->___callPlugins('__call', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function isEmpty() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); if (!$pluginInfo) { return parent::isEmpty(); } else { return $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); if (!$pluginInfo) { return parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); } else { return $this->___callPlugins('serialize', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function debug($data = null, &$objects = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); if (!$pluginInfo) { return parent::debug($data, $objects); } else { return $this->___callPlugins('debug', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetSet($offset, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); if (!$pluginInfo) { return parent::offsetSet($offset, $value); } else { return $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetExists($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); if (!$pluginInfo) { return parent::offsetExists($offset); } else { return $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetUnset($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); if (!$pluginInfo) { return parent::offsetUnset($offset); } else { return $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo); } } /** * {@inheritdoc} */ public function offsetGet($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); if (!$pluginInfo) { return parent::offsetGet($offset); } else { return $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo); } } } generated/code/Magento/Config/Console/0000775000175100017510000000000013545561736020716 5ustar webmasterwebmastergenerated/code/Magento/Config/Console/Command/0000775000175100017510000000000013545561736022274 5ustar webmasterwebmastergenerated/code/Magento/Config/Console/Command/ConfigSet/0000775000175100017510000000000013545561736024155 5ustar webmasterwebmastergenerated/code/Magento/Config/Console/Command/ConfigSet/ProcessorFacadeFactory.php0000664000175100017510000000224313545561736031262 0ustar webmasterwebmaster<?php namespace Magento\Config\Console\Command\ConfigSet; /** * Factory class for @see \Magento\Config\Console\Command\ConfigSet\ProcessorFacade */ class ProcessorFacadeFactory { /** * 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\\Config\\Console\\Command\\ConfigSet\\ProcessorFacade') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Config\Console\Command\ConfigSet\ProcessorFacade */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/Translation/0000775000175100017510000000000013545561736020405 5ustar webmasterwebmastergenerated/code/Magento/Translation/Model/0000775000175100017510000000000013545561736021445 5ustar webmasterwebmastergenerated/code/Magento/Translation/Model/Source/0000775000175100017510000000000013545561736022705 5ustar webmasterwebmastergenerated/code/Magento/Translation/Model/Source/InitialTranslationSource/0000775000175100017510000000000013545561736027676 5ustar webmasterwebmastergenerated/code/Magento/Translation/Model/Source/InitialTranslationSource/Proxy.php0000664000175100017510000000454013545561736031533 0ustar webmasterwebmaster<?php namespace Magento\Translation\Model\Source\InitialTranslationSource; /** * Proxy class for @see \Magento\Translation\Model\Source\InitialTranslationSource */ class Proxy extends \Magento\Translation\Model\Source\InitialTranslationSource implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\Translation\Model\Source\InitialTranslationSource */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\Translation\\Model\\Source\\InitialTranslationSource', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\Translation\Model\Source\InitialTranslationSource */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function get($path = '') { return $this->_getSubject()->get($path); } } generated/code/Magento/Translation/Model/ResourceModel/0000775000175100017510000000000013545561736024215 5ustar webmasterwebmastergenerated/code/Magento/Translation/Model/ResourceModel/TranslateFactory.php0000664000175100017510000000220613545561736030213 0ustar webmasterwebmaster<?php namespace Magento\Translation\Model\ResourceModel; /** * Factory class for @see \Magento\Translation\Model\ResourceModel\Translate */ class TranslateFactory { /** * 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\\Translation\\Model\\ResourceModel\\Translate') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Translation\Model\ResourceModel\Translate */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/SalesSequence/0000775000175100017510000000000013545561736020647 5ustar webmasterwebmastergenerated/code/Magento/SalesSequence/Model/0000775000175100017510000000000013545561736021707 5ustar webmasterwebmastergenerated/code/Magento/SalesSequence/Model/SequenceFactory.php0000664000175100017510000000212113545561736025514 0ustar webmasterwebmaster<?php namespace Magento\SalesSequence\Model; /** * Factory class for @see \Magento\SalesSequence\Model\Sequence */ class SequenceFactory { /** * 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\\SalesSequence\\Model\\Sequence') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\SalesSequence\Model\Sequence */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/SalesSequence/Model/MetaFactory.php0000664000175100017510000000210113545561736024630 0ustar webmasterwebmaster<?php namespace Magento\SalesSequence\Model; /** * Factory class for @see \Magento\SalesSequence\Model\Meta */ class MetaFactory { /** * 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\\SalesSequence\\Model\\Meta') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\SalesSequence\Model\Meta */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/SalesSequence/Model/ProfileFactory.php0000664000175100017510000000211513545561736025347 0ustar webmasterwebmaster<?php namespace Magento\SalesSequence\Model; /** * Factory class for @see \Magento\SalesSequence\Model\Profile */ class ProfileFactory { /** * 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\\SalesSequence\\Model\\Profile') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\SalesSequence\Model\Profile */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/MessageQueue/0000775000175100017510000000000013545561736020500 5ustar webmasterwebmastergenerated/code/Magento/MessageQueue/Console/0000775000175100017510000000000013545561736022102 5ustar webmasterwebmastergenerated/code/Magento/MessageQueue/Console/StartConsumerCommand/0000775000175100017510000000000013545561736026212 5ustar webmasterwebmastergenerated/code/Magento/MessageQueue/Console/StartConsumerCommand/Proxy.php0000664000175100017510000001552413545561736030053 0ustar webmasterwebmaster<?php namespace Magento\MessageQueue\Console\StartConsumerCommand; /** * Proxy class for @see \Magento\MessageQueue\Console\StartConsumerCommand */ class Proxy extends \Magento\MessageQueue\Console\StartConsumerCommand implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\MessageQueue\Console\StartConsumerCommand */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\MessageQueue\\Console\\StartConsumerCommand', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\MessageQueue\Console\StartConsumerCommand */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function ignoreValidationErrors() { return $this->_getSubject()->ignoreValidationErrors(); } /** * {@inheritdoc} */ public function setApplication(?\Symfony\Component\Console\Application $application = null) { return $this->_getSubject()->setApplication($application); } /** * {@inheritdoc} */ public function setHelperSet(\Symfony\Component\Console\Helper\HelperSet $helperSet) { return $this->_getSubject()->setHelperSet($helperSet); } /** * {@inheritdoc} */ public function getHelperSet() { return $this->_getSubject()->getHelperSet(); } /** * {@inheritdoc} */ public function getApplication() { return $this->_getSubject()->getApplication(); } /** * {@inheritdoc} */ public function isEnabled() { return $this->_getSubject()->isEnabled(); } /** * {@inheritdoc} */ public function run(\Symfony\Component\Console\Input\InputInterface $input, \Symfony\Component\Console\Output\OutputInterface $output) { return $this->_getSubject()->run($input, $output); } /** * {@inheritdoc} */ public function setCode(callable $code) { return $this->_getSubject()->setCode($code); } /** * {@inheritdoc} */ public function mergeApplicationDefinition($mergeArgs = true) { return $this->_getSubject()->mergeApplicationDefinition($mergeArgs); } /** * {@inheritdoc} */ public function setDefinition($definition) { return $this->_getSubject()->setDefinition($definition); } /** * {@inheritdoc} */ public function getDefinition() { return $this->_getSubject()->getDefinition(); } /** * {@inheritdoc} */ public function getNativeDefinition() { return $this->_getSubject()->getNativeDefinition(); } /** * {@inheritdoc} */ public function addArgument($name, $mode = null, $description = '', $default = null) { return $this->_getSubject()->addArgument($name, $mode, $description, $default); } /** * {@inheritdoc} */ public function addOption($name, $shortcut = null, $mode = null, $description = '', $default = null) { return $this->_getSubject()->addOption($name, $shortcut, $mode, $description, $default); } /** * {@inheritdoc} */ public function setName($name) { return $this->_getSubject()->setName($name); } /** * {@inheritdoc} */ public function setProcessTitle($title) { return $this->_getSubject()->setProcessTitle($title); } /** * {@inheritdoc} */ public function getName() { return $this->_getSubject()->getName(); } /** * {@inheritdoc} */ public function setHidden($hidden) { return $this->_getSubject()->setHidden($hidden); } /** * {@inheritdoc} */ public function isHidden() { return $this->_getSubject()->isHidden(); } /** * {@inheritdoc} */ public function setDescription($description) { return $this->_getSubject()->setDescription($description); } /** * {@inheritdoc} */ public function getDescription() { return $this->_getSubject()->getDescription(); } /** * {@inheritdoc} */ public function setHelp($help) { return $this->_getSubject()->setHelp($help); } /** * {@inheritdoc} */ public function getHelp() { return $this->_getSubject()->getHelp(); } /** * {@inheritdoc} */ public function getProcessedHelp() { return $this->_getSubject()->getProcessedHelp(); } /** * {@inheritdoc} */ public function setAliases($aliases) { return $this->_getSubject()->setAliases($aliases); } /** * {@inheritdoc} */ public function getAliases() { return $this->_getSubject()->getAliases(); } /** * {@inheritdoc} */ public function getSynopsis($short = false) { return $this->_getSubject()->getSynopsis($short); } /** * {@inheritdoc} */ public function addUsage($usage) { return $this->_getSubject()->addUsage($usage); } /** * {@inheritdoc} */ public function getUsages() { return $this->_getSubject()->getUsages(); } /** * {@inheritdoc} */ public function getHelper($name) { return $this->_getSubject()->getHelper($name); } } generated/code/Magento/MessageQueue/Console/ConsumerListCommand/0000775000175100017510000000000013545561736026030 5ustar webmasterwebmastergenerated/code/Magento/MessageQueue/Console/ConsumerListCommand/Proxy.php0000664000175100017510000001551613545561736027672 0ustar webmasterwebmaster<?php namespace Magento\MessageQueue\Console\ConsumerListCommand; /** * Proxy class for @see \Magento\MessageQueue\Console\ConsumerListCommand */ class Proxy extends \Magento\MessageQueue\Console\ConsumerListCommand implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\MessageQueue\Console\ConsumerListCommand */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\MessageQueue\\Console\\ConsumerListCommand', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\MessageQueue\Console\ConsumerListCommand */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function ignoreValidationErrors() { return $this->_getSubject()->ignoreValidationErrors(); } /** * {@inheritdoc} */ public function setApplication(?\Symfony\Component\Console\Application $application = null) { return $this->_getSubject()->setApplication($application); } /** * {@inheritdoc} */ public function setHelperSet(\Symfony\Component\Console\Helper\HelperSet $helperSet) { return $this->_getSubject()->setHelperSet($helperSet); } /** * {@inheritdoc} */ public function getHelperSet() { return $this->_getSubject()->getHelperSet(); } /** * {@inheritdoc} */ public function getApplication() { return $this->_getSubject()->getApplication(); } /** * {@inheritdoc} */ public function isEnabled() { return $this->_getSubject()->isEnabled(); } /** * {@inheritdoc} */ public function run(\Symfony\Component\Console\Input\InputInterface $input, \Symfony\Component\Console\Output\OutputInterface $output) { return $this->_getSubject()->run($input, $output); } /** * {@inheritdoc} */ public function setCode(callable $code) { return $this->_getSubject()->setCode($code); } /** * {@inheritdoc} */ public function mergeApplicationDefinition($mergeArgs = true) { return $this->_getSubject()->mergeApplicationDefinition($mergeArgs); } /** * {@inheritdoc} */ public function setDefinition($definition) { return $this->_getSubject()->setDefinition($definition); } /** * {@inheritdoc} */ public function getDefinition() { return $this->_getSubject()->getDefinition(); } /** * {@inheritdoc} */ public function getNativeDefinition() { return $this->_getSubject()->getNativeDefinition(); } /** * {@inheritdoc} */ public function addArgument($name, $mode = null, $description = '', $default = null) { return $this->_getSubject()->addArgument($name, $mode, $description, $default); } /** * {@inheritdoc} */ public function addOption($name, $shortcut = null, $mode = null, $description = '', $default = null) { return $this->_getSubject()->addOption($name, $shortcut, $mode, $description, $default); } /** * {@inheritdoc} */ public function setName($name) { return $this->_getSubject()->setName($name); } /** * {@inheritdoc} */ public function setProcessTitle($title) { return $this->_getSubject()->setProcessTitle($title); } /** * {@inheritdoc} */ public function getName() { return $this->_getSubject()->getName(); } /** * {@inheritdoc} */ public function setHidden($hidden) { return $this->_getSubject()->setHidden($hidden); } /** * {@inheritdoc} */ public function isHidden() { return $this->_getSubject()->isHidden(); } /** * {@inheritdoc} */ public function setDescription($description) { return $this->_getSubject()->setDescription($description); } /** * {@inheritdoc} */ public function getDescription() { return $this->_getSubject()->getDescription(); } /** * {@inheritdoc} */ public function setHelp($help) { return $this->_getSubject()->setHelp($help); } /** * {@inheritdoc} */ public function getHelp() { return $this->_getSubject()->getHelp(); } /** * {@inheritdoc} */ public function getProcessedHelp() { return $this->_getSubject()->getProcessedHelp(); } /** * {@inheritdoc} */ public function setAliases($aliases) { return $this->_getSubject()->setAliases($aliases); } /** * {@inheritdoc} */ public function getAliases() { return $this->_getSubject()->getAliases(); } /** * {@inheritdoc} */ public function getSynopsis($short = false) { return $this->_getSubject()->getSynopsis($short); } /** * {@inheritdoc} */ public function addUsage($usage) { return $this->_getSubject()->addUsage($usage); } /** * {@inheritdoc} */ public function getUsages() { return $this->_getSubject()->getUsages(); } /** * {@inheritdoc} */ public function getHelper($name) { return $this->_getSubject()->getHelper($name); } } generated/code/Magento/NewRelicReporting/0000775000175100017510000000000013545561736021511 5ustar webmasterwebmastergenerated/code/Magento/NewRelicReporting/Model/0000775000175100017510000000000013545561736022551 5ustar webmasterwebmastergenerated/code/Magento/NewRelicReporting/Model/Apm/0000775000175100017510000000000013545561736023266 5ustar webmasterwebmastergenerated/code/Magento/NewRelicReporting/Model/Apm/DeploymentsFactory.php0000664000175100017510000000217613545561736027640 0ustar webmasterwebmaster<?php namespace Magento\NewRelicReporting\Model\Apm; /** * Factory class for @see \Magento\NewRelicReporting\Model\Apm\Deployments */ class DeploymentsFactory { /** * 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\\NewRelicReporting\\Model\\Apm\\Deployments') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\NewRelicReporting\Model\Apm\Deployments */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/PageCache/0000775000175100017510000000000013545561736017707 5ustar webmasterwebmastergenerated/code/Magento/PageCache/Model/0000775000175100017510000000000013545561736020747 5ustar webmasterwebmastergenerated/code/Magento/PageCache/Model/VclGeneratorInterfaceFactory.php0000664000175100017510000000216513545561736027230 0ustar webmasterwebmaster<?php namespace Magento\PageCache\Model; /** * Factory class for @see \Magento\PageCache\Model\VclGeneratorInterface */ class VclGeneratorInterfaceFactory { /** * 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\\PageCache\\Model\\VclGeneratorInterface') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\PageCache\Model\VclGeneratorInterface */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/PageCache/Model/Varnish/0000775000175100017510000000000013545561736022361 5ustar webmasterwebmastergenerated/code/Magento/PageCache/Model/Varnish/VclGeneratorFactory.php0000664000175100017510000000216213545561736027016 0ustar webmasterwebmaster<?php namespace Magento\PageCache\Model\Varnish; /** * Factory class for @see \Magento\PageCache\Model\Varnish\VclGenerator */ class VclGeneratorFactory { /** * 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\\PageCache\\Model\\Varnish\\VclGenerator') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\PageCache\Model\Varnish\VclGenerator */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/User/0000775000175100017510000000000013545561736017025 5ustar webmasterwebmastergenerated/code/Magento/User/Model/0000775000175100017510000000000013545561736020065 5ustar webmasterwebmastergenerated/code/Magento/User/Model/UserFactory.php0000664000175100017510000000203513545561736023044 0ustar webmasterwebmaster<?php namespace Magento\User\Model; /** * Factory class for @see \Magento\User\Model\User */ class UserFactory { /** * 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\\User\\Model\\User') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\User\Model\User */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/MediaStorage/0000775000175100017510000000000013545561747020455 5ustar webmasterwebmastergenerated/code/Magento/MediaStorage/Model/0000775000175100017510000000000013545561747021515 5ustar webmasterwebmastergenerated/code/Magento/MediaStorage/Model/File/0000775000175100017510000000000013545561747022374 5ustar webmasterwebmastergenerated/code/Magento/MediaStorage/Model/File/Storage/0000775000175100017510000000000013545561747024000 5ustar webmasterwebmastergenerated/code/Magento/MediaStorage/Model/File/Storage/DatabaseFactory.php0000664000175100017510000000220313545561747027542 0ustar webmasterwebmaster<?php namespace Magento\MediaStorage\Model\File\Storage; /** * Factory class for @see \Magento\MediaStorage\Model\File\Storage\Database */ class DatabaseFactory { /** * 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\\MediaStorage\\Model\\File\\Storage\\Database') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\MediaStorage\Model\File\Storage\Database */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Magento/MediaStorage/Model/File/Storage/File/0000775000175100017510000000000013545561747024657 5ustar webmasterwebmastergenerated/code/Magento/MediaStorage/Model/File/Storage/File/Proxy.php0000664000175100017510000001104713545561747026514 0ustar webmasterwebmaster<?php namespace Magento\MediaStorage\Model\File\Storage\File; /** * Proxy class for @see \Magento\MediaStorage\Model\File\Storage\File */ class Proxy extends \Magento\MediaStorage\Model\File\Storage\File implements \Magento\Framework\ObjectManager\NoninterceptableInterface { /** * Object Manager instance * * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager = null; /** * Proxied instance name * * @var string */ protected $_instanceName = null; /** * Proxied instance * * @var \Magento\MediaStorage\Model\File\Storage\File */ protected $_subject = null; /** * Instance shareability flag * * @var bool */ protected $_isShared = null; /** * Proxy constructor * * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param string $instanceName * @param bool $shared */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName = '\\Magento\\MediaStorage\\Model\\File\\Storage\\File', $shared = true) { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; $this->_isShared = $shared; } /** * @return array */ public function __sleep() { return ['_subject', '_isShared', '_instanceName']; } /** * Retrieve ObjectManager from global scope */ public function __wakeup() { $this->_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); } /** * Clone proxied instance */ public function __clone() { $this->_subject = clone $this->_getSubject(); } /** * Get proxied instance * * @return \Magento\MediaStorage\Model\File\Storage\File */ protected function _getSubject() { if (!$this->_subject) { $this->_subject = true === $this->_isShared ? $this->_objectManager->get($this->_instanceName) : $this->_objectManager->create($this->_instanceName); } return $this->_subject; } /** * {@inheritdoc} */ public function init() { return $this->_getSubject()->init(); } /** * {@inheritdoc} */ public function getStorageName() { return $this->_getSubject()->getStorageName(); } /** * {@inheritdoc} */ public function getStorageData() { return $this->_getSubject()->getStorageData(); } /** * {@inheritdoc} */ public function hasErrors() { return $this->_getSubject()->hasErrors(); } /** * {@inheritdoc} */ public function clear() { return $this->_getSubject()->clear(); } /** * {@inheritdoc} */ public function collectData($offset = 0, $count = 100, $type = 'files') { return $this->_getSubject()->collectData($offset, $count, $type); } /** * {@inheritdoc} */ public function getConfigConnectionName() { return $this->_getSubject()->getConfigConnectionName(); } /** * {@inheritdoc} */ public function getConnectionName() { return $this->_getSubject()->getConnectionName(); } /** * {@inheritdoc} */ public function exportDirectories($offset = 0, $count = 100) { return $this->_getSubject()->exportDirectories($offset, $count); } /** * {@inheritdoc} */ public function exportFiles($offset = 0, $count = 1) { return $this->_getSubject()->exportFiles($offset, $count); } /** * {@inheritdoc} */ public function import($data, $callback) { return $this->_getSubject()->import($data, $callback); } /** * {@inheritdoc} */ public function importDirectories($dirs) { return $this->_getSubject()->importDirectories($dirs); } /** * {@inheritdoc} */ public function importFiles($files) { return $this->_getSubject()->importFiles($files); } /** * {@inheritdoc} */ public function saveDir($dir) { return $this->_getSubject()->saveDir($dir); } /** * {@inheritdoc} */ public function saveFile($file, $overwrite = true) { return $this->_getSubject()->saveFile($file, $overwrite); } /** * {@inheritdoc} */ public function getMediaBaseDirectory() { return $this->_getSubject()->getMediaBaseDirectory(); } } generated/code/Mageplaza/0000775000175100017510000000000013545561714016412 5ustar webmasterwebmastergenerated/code/Mageplaza/LayeredNavigation/0000775000175100017510000000000013545561714022017 5ustar webmasterwebmastergenerated/code/Mageplaza/LayeredNavigation/Api/0000775000175100017510000000000013545561714022530 5ustar webmasterwebmastergenerated/code/Mageplaza/LayeredNavigation/Api/Search/0000775000175100017510000000000013545561714023735 5ustar webmasterwebmastergenerated/code/Mageplaza/LayeredNavigation/Api/Search/DocumentFactory.php0000664000175100017510000000217613545561714027562 0ustar webmasterwebmaster<?php namespace Mageplaza\LayeredNavigation\Api\Search; /** * Factory class for @see \Mageplaza\LayeredNavigation\Api\Search\Document */ class DocumentFactory { /** * 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 = '\\Mageplaza\\LayeredNavigation\\Api\\Search\\Document') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Mageplaza\LayeredNavigation\Api\Search\Document */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Symfony/0000775000175100017510000000000013545561735016160 5ustar webmasterwebmastergenerated/code/Symfony/Component/0000775000175100017510000000000013545561735020122 5ustar webmasterwebmastergenerated/code/Symfony/Component/Console/0000775000175100017510000000000013545561736021525 5ustar webmasterwebmastergenerated/code/Symfony/Component/Console/Helper/0000775000175100017510000000000013545561735022743 5ustar webmasterwebmastergenerated/code/Symfony/Component/Console/Helper/TableFactory.php0000664000175100017510000000213213545561735026031 0ustar webmasterwebmaster<?php namespace Symfony\Component\Console\Helper; /** * Factory class for @see \Symfony\Component\Console\Helper\Table */ class TableFactory { /** * 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 = '\\Symfony\\Component\\Console\\Helper\\Table') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Symfony\Component\Console\Helper\Table */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Symfony/Component/Console/Question/0000775000175100017510000000000013545561736023334 5ustar webmasterwebmastergenerated/code/Symfony/Component/Console/Question/QuestionFactory.php0000664000175100017510000000215613545561736027210 0ustar webmasterwebmaster<?php namespace Symfony\Component\Console\Question; /** * Factory class for @see \Symfony\Component\Console\Question\Question */ class QuestionFactory { /** * 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 = '\\Symfony\\Component\\Console\\Question\\Question') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Symfony\Component\Console\Question\Question */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Symfony/Component/Console/Input/0000775000175100017510000000000013545561736022624 5ustar webmasterwebmastergenerated/code/Symfony/Component/Console/Input/ArrayInputFactory.php0000664000175100017510000000215213545561736026763 0ustar webmasterwebmaster<?php namespace Symfony\Component\Console\Input; /** * Factory class for @see \Symfony\Component\Console\Input\ArrayInput */ class ArrayInputFactory { /** * 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 = '\\Symfony\\Component\\Console\\Input\\ArrayInput') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Symfony\Component\Console\Input\ArrayInput */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/Composer/0000775000175100017510000000000013545561736016304 5ustar webmasterwebmastergenerated/code/Composer/Console/0000775000175100017510000000000013545561736017706 5ustar webmasterwebmastergenerated/code/Composer/Console/ApplicationFactory.php0000664000175100017510000000206013545561736024210 0ustar webmasterwebmaster<?php namespace Composer\Console; /** * Factory class for @see \Composer\Console\Application */ class ApplicationFactory { /** * 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 = '\\Composer\\Console\\Application') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Composer\Console\Application */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } } generated/code/MSP/0000775000175100017510000000000013545561736015154 5ustar webmasterwebmastergenerated/code/MSP/TwoFactorAuth/0000775000175100017510000000000013545561736017706 5ustar webmasterwebmastergenerated/code/MSP/TwoFactorAuth/Model/0000775000175100017510000000000013545561736020746 5ustar webmasterwebmastergenerated/code/MSP/TwoFactorAuth/Model/UserConfigFactory.php0000664000175100017510000000211113545561736025046 0ustar webmasterwebmaster<?php namespace MSP\TwoFactorAuth\Model; /** * Factory class for @see \MSP\TwoFactorAuth\Model\UserConfig */ class UserConfigFactory { /** * 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 = '\\MSP\\TwoFactorAuth\\Model\\UserConfig') { $this->_objectManager = $objectManager; $this->_instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \MSP\TwoFactorAuth\Model\UserConfig */ public function create(array $data = []) { return $this->_objectManager->create($this->_instanceName, $data); } }