es['OxidEsales\\EshopCommunity\\Internal\\Framework\\Module\\Configuration\\Dao\\ShopConfigurationDaoInterface'] ?? $this->getShopConfigurationDaoInterfaceService()), ($this->services['OxidEsales\\EshopCommunity\\Internal\\Framework\\Module\\State\\ModuleStateServiceInterface'] ?? $this->getModuleStateServiceInterfaceService()), ($this->services['OxidEsales\\EshopCommunity\\Internal\\Transition\\Utility\\ContextInterface'] ?? ($this->services['OxidEsales\\EshopCommunity\\Internal\\Transition\\Utility\\ContextInterface'] = new \OxidEsales\EshopCommunity\Internal\Transition\Utility\Context())))); } /** * Gets the private 'oxid_esales.module.setup.service.eventsubscriber.dispatch_legacy_events_subscriber' shared autowired service. * * @return \OxidEsales\EshopCommunity\Internal\Framework\Module\Setup\EventSubscriber\DispatchLegacyEventsSubscriber */ protected function getOxidEsales_Module_Setup_Service_Eventsubscriber_DispatchLegacyEventsSubscriberService() { $a = ($this->privates['OxidEsales\\EshopCommunity\\Internal\\Framework\\Module\\Configuration\\Dao\\ModuleConfigurationDaoInterface'] ?? $this->getModuleConfigurationDaoInterfaceService()); if (isset($this->privates['oxid_esales.module.setup.service.eventsubscriber.dispatch_legacy_events_subscriber'])) { return $this->privates['oxid_esales.module.setup.service.eventsubscriber.dispatch_legacy_events_subscriber']; } return $this->privates['oxid_esales.module.setup.service.eventsubscriber.dispatch_legacy_events_subscriber'] = new \OxidEsales\EshopCommunity\Internal\Framework\Module\Setup\EventSubscriber\DispatchLegacyEventsSubscriber($a, ($this->privates['OxidEsales\\EshopCommunity\\Internal\\Transition\\Adapter\\ShopAdapterInterface'] ?? ($this->privates['OxidEsales\\EshopCommunity\\Internal\\Transition\\Adapter\\ShopAdapterInterface'] = new \OxidEsales\EshopCommunity\Internal\Transition\Adapter\ShopAdapter()))); } /** * Gets the private 'oxid_esales.module.setup.service.eventsubscriber.event_logging_subscriber' shared autowired service. * * @return \OxidEsales\EshopCommunity\Internal\Framework\Module\Setup\EventSubscriber\EventLoggingSubscriber */ protected function getOxidEsales_Module_Setup_Service_Eventsubscriber_EventLoggingSubscriberService() { return $this->privates['oxid_esales.module.setup.service.eventsubscriber.event_logging_subscriber'] = new \OxidEsales\EshopCommunity\Internal\Framework\Module\Setup\EventSubscriber\EventLoggingSubscriber(($this->services['Psr\\Log\\LoggerInterface'] ?? $this->getLoggerInterfaceService())); } /** * Gets the private 'utility.context.admin_log_file_path' shared autowired service. * * @return \OxidEsales\EshopCommunity\Internal\Transition\Utility\ContextInterface * * @deprecated Since oxid-esales/oxideshop-ce 6.5.0: The "utility.context.admin_log_file_path" service is deprecated. Use "OxidEsales\EshopCommunity\Internal\Transition\Utility\ContextInterface" instead. */ protected function getUtility_Context_AdminLogFilePathService() { trigger_deprecation('oxid-esales/oxideshop-ce', '6.5.0', 'The "utility.context.admin_log_file_path" service is deprecated. Use "OxidEsales\\EshopCommunity\\Internal\\Transition\\Utility\\ContextInterface" instead.'); return ($this->services['OxidEsales\\EshopCommunity\\Internal\\Transition\\Utility\\ContextInterface'] ?? ($this->services['OxidEsales\\EshopCommunity\\Internal\\Transition\\Utility\\ContextInterface'] = new \OxidEsales\EshopCommunity\Internal\Transition\Utility\Context()))->getAdminLogFilePath(); } /** * Gets the private 'utility.context.log_file_path' shared autowired service. * * @return \OxidEsales\EshopCommunity\Internal\Transition\Utility\ContextInterface * * @deprecated Since oxid-esales/oxideshop-ce 6.5.0: The "utility.context.log_file_path" service is deprecated. Use "OxidEsales\EshopCommunity\Internal\Transition\Utility\ContextInterface" instead. */ protected function getUtility_Context_LogFilePathService() { trigger_deprecation('oxid-esales/oxideshop-ce', '6.5.0', 'The "utility.context.log_file_path" service is deprecated. Use "OxidEsales\\EshopCommunity\\Internal\\Transition\\Utility\\ContextInterface" instead.'); return ($this->services['OxidEsales\\EshopCommunity\\Internal\\Transition\\Utility\\ContextInterface'] ?? ($this->services['OxidEsales\\EshopCommunity\\Internal\\Transition\\Utility\\ContextInterface'] = new \OxidEsales\EshopCommunity\Internal\Transition\Utility\Context()))->getLogFilePath(); } /** * Gets the private 'utility.context.log_level' shared autowired service. * * @return \OxidEsales\EshopCommunity\Internal\Transition\Utility\ContextInterface * * @deprecated Since oxid-esales/oxideshop-ce 6.5.0: The "utility.context.log_level" service is deprecated. Use "OxidEsales\EshopCommunity\Internal\Transition\Utility\ContextInterface" instead. */ protected function getUtility_Context_LogLevelService() { trigger_deprecation('oxid-esales/oxideshop-ce', '6.5.0', 'The "utility.context.log_level" service is deprecated. Use "OxidEsales\\EshopCommunity\\Internal\\Transition\\Utility\\ContextInterface" instead.'); return ($this->services['OxidEsales\\EshopCommunity\\Internal\\Transition\\Utility\\ContextInterface'] ?? ($this->services['OxidEsales\\EshopCommunity\\Internal\\Transition\\Utility\\ContextInterface'] = new \OxidEsales\EshopCommunity\Internal\Transition\Utility\Context()))->getLogLevel(); } /** * @return array|bool|float|int|string|\UnitEnum|null */ public function getParameter(string $name) { if (!(isset($this->parameters[$name]) || isset($this->loadedDynamicParameters[$name]) || \array_key_exists($name, $this->parameters))) { throw new InvalidArgumentException(sprintf('The parameter "%s" must be defined.', $name)); } if (isset($this->loadedDynamicParameters[$name])) { return $this->loadedDynamicParameters[$name] ? $this->dynamicParameters[$name] : $this->getDynamicParameter($name); } return $this->parameters[$name]; } public function hasParameter(string $name): bool { return isset($this->parameters[$name]) || isset($this->loadedDynamicParameters[$name]) || \array_key_exists($name, $this->parameters); } public function setParameter(string $name, $value): void { throw new LogicException('Impossible to call set() on a frozen ParameterBag.'); } public function getParameterBag(): ParameterBagInterface { if (null === $this->parameterBag) { $parameters = $this->parameters; foreach ($this->loadedDynamicParameters as $name => $loaded) { $parameters[$name] = $loaded ? $this->dynamicParameters[$name] : $this->getDynamicParameter($name); } $this->parameterBag = new FrozenParameterBag($parameters); } return $this->parameterBag; } private $loadedDynamicParameters = []; private $dynamicParameters = []; private function getDynamicParameter(string $name) { throw new InvalidArgumentException(sprintf('The dynamic parameter "%s" must be defined.', $name)); } protected function getDefaultParameters(): array { return [ 'oxid_esales.module.metadata.service.metadata_schemata' => [ '1.0' => [ 0 => 'id', 1 => 'version', 2 => 'title', 3 => 'description', 4 => 'lang', 5 => 'thumbnail', 6 => 'author', 7 => 'url', 8 => 'email', 9 => 'extend', 11 => 'templates', 'blocks' => [ 0 => 'theme', 1 => 'template', 2 => 'block', 3 => 'file', 4 => 'position', ], 'settings' => [ 0 => 'group', 1 => 'name', 2 => 'type', 3 => 'value', 4 => 'constraints', 5 => 'position', ], 13 => 'files', ], '1.1' => [ 0 => 'id', 1 => 'version', 2 => 'title', 3 => 'description', 4 => 'lang', 5 => 'thumbnail', 6 => 'author', 7 => 'url', 8 => 'email', 9 => 'extend', 11 => 'templates', 'blocks' => [ 0 => 'theme', 1 => 'template', 2 => 'block', 3 => 'file', 4 => 'position', ], 'settings' => [ 0 => 'group', 1 => 'name', 2 => 'type', 3 => 'value', 4 => 'constraints', 5 => 'position', ], 12 => 'events', 13 => 'files', ], '1.2' => [ 0 => 'id', 1 => 'version', 2 => 'title', 3 => 'description', 4 => 'lang', 5 => 'thumbnail', 6 => 'author', 7 => 'url', 8 => 'email', 9 => 'extend', 11 => 'templates', 'blocks' => [ 0 => 'theme', 1 => 'template', 2 => 'block', 3 => 'file', 4 => 'position', ], 'settings' => [ 0 => 'group', 1 => 'name', 2 => 'type', 3 => 'value', 4 => 'constraints', 5 => 'position', ], 12 => 'events', 13 => 'files', ], '2.0' => [ 0 => 'id', 1 => 'version', 2 => 'title', 3 => 'description', 4 => 'lang', 5 => 'thumbnail', 6 => 'author', 7 => 'url', 8 => 'email', 9 => 'extend', 10 => 'controllers', 11 => 'templates', 'blocks' => [ 0 => 'theme', 1 => 'template', 2 => 'block', 3 => 'file', 4 => 'position', ], 'settings' => [ 0 => 'group', 1 => 'name', 2 => 'type', 3 => 'value', 4 => 'constraints', 5 => 'position', ], 12 => 'events', ], '2.1' => [ 0 => 'id', 1 => 'version', 2 => 'title', 3 => 'description', 4 => 'lang', 5 => 'thumbnail', 6 => 'author', 7 => 'url', 8 => 'email', 9 => 'extend', 10 => 'controllers', 11 => 'templates', 'blocks' => [ 0 => 'theme', 1 => 'template', 2 => 'block', 3 => 'file', 4 => 'position', ], 'settings' => [ 0 => 'group', 1 => 'name', 2 => 'type', 3 => 'value', 4 => 'constraints', 5 => 'position', ], 12 => 'events', 13 => 'smartyPluginDirectories', ], ], 'deprecated' => [ 'package' => 'oxid-esales/oxideshop-ce', 'version' => '6.5.0', 'message' => 'The attribute will be removed', ], 'oxid_esales.authentication.service.password_hash.bcrypt.cost' => 10, 'oxid_esales.authentication.service.password_hash.argon2.memory_cost' => 1024, 'oxid_esales.authentication.service.password_hash.argon2.time_cost' => 2, 'oxid_esales.authentication.service.password_hash.argon2.threads' => 2, 'oxid_esales.theme.admin.name' => 'admin', 'console.command.ids' => [ ], ]; } } Maintenance mode / Wartungsarbeiten

Maintenance mode, please try again later.
Click here to reload shop.

Wartungsarbeiten, bitte versuchen Sie es später noch einmal.
Klicken Sie hier, um den Shop erneut zu laden.