Exceptions
Exception
Shopware\Core\Framework\DataAbstractionLayer\Exception\ EntityNotFoundException
Show exception properties
Shopware\Core\Framework\DataAbstractionLayer\Exception\EntityNotFoundException {#10520 -statusCode: 404 -headers: [] #parameters: array:2 [ "entity" => "product_stream" "identifier" => "0193d451ff977279aef95721fc519b7a" ] }
$stream = $this->repository
->search($criteria, $context)
->get($id);
if (!$stream) {
throw new EntityNotFoundException('product_stream', $id);
}
$data = $stream->getApiFilter();
if (!$data) {
throw new NoFilterException($id);
in
vendor/shopware/core/Content/Product/Cms/ProductSliderCmsElementResolver.php
->
buildFilters
(line 176)
return $criteria;
}
private function collectByProductStream(ResolverContext $resolverContext, FieldConfig $config, FieldConfigCollection $elementConfig): Criteria
{
$filters = $this->productStreamBuilder->buildFilters(
$config->getStringValue(),
$resolverContext->getSalesChannelContext()->getContext()
);
$sorting = 'name:' . FieldSorting::ASCENDING;
in
vendor/shopware/core/Content/Product/Cms/ProductSliderCmsElementResolver.php
->
collectByProductStream
(line 76)
$collection->add(self::PRODUCT_SLIDER_ENTITY_FALLBACK . '_' . $slot->getUniqueIdentifier(), ProductDefinition::class, $criteria);
}
}
if ($products->isProductStream() && $products->getValue()) {
$criteria = $this->collectByProductStream($resolverContext, $products, $config);
$collection->add(self::PRODUCT_SLIDER_ENTITY_FALLBACK . '_' . $slot->getUniqueIdentifier(), ProductDefinition::class, $criteria);
}
return $collection->all() ? $collection : null;
}
in
vendor/store.shopware.com/maxialistingvariants6/src/Core/Content/Product/Cms/ProductSliderCmsElementResolver.php
->
collect
(line 65)
));
return $criteriaCollection;
}
return $this->parent->collect($slot, $resolverContext);
}
public function enrich(CmsSlotEntity $slot, ResolverContext $resolverContext, ElementDataCollection $result): void
{
$this->parent->enrich($slot, $resolverContext, $result);
in
vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php
->
collect
(line 62)
$resolver = $this->resolvers[$slot->getType()] ?? null;
if (!$resolver) {
continue;
}
$collection = $resolver->collect($slot, $resolverContext);
if ($collection === null) {
continue;
}
$slotCriteriaList[$slot->getUniqueIdentifier()] = $collection;
in
vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php
->
resolve
(line 112)
}
private function loadSlotData(CmsSectionCollection $sections, ResolverContext $resolverContext): void
{
$blocks = $sections->getBlocks();
$slots = $this->slotDataResolver->resolve($blocks->getSlots(), $resolverContext);
$blocks->setSlots($slots);
}
/**
in
vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php
->
loadSlotData
(line 99)
// step 4, overwrite slot config
$this->overwriteSlotConfig($sections, $overwrite);
// step 5, resolve slot data
$this->loadSlotData($sections, $resolverContext);
}
$this->dispatcher->dispatch(new CmsPageLoadedEvent($request, $pages, $context));
$this->dispatcher->dispatch(new AddCacheTagEvent(...$this->extractProductIds($pages)));
in
vendor/store.shopware.com/netzppowerpack6/src/Core/Cms/SalesChannelCmsPageLoaderDecorator.php
->
load
(line 25)
public function load(Request $request, Criteria $criteria, SalesChannelContext $context,
?array $config = null, ?ResolverContext $resolverContext = null): EntitySearchResult
{
$timeZone = $request->cookies->get('timezone', 'Europe/Berlin');
$pages = $this->inner->load($request, $criteria, $context, $config, $resolverContext);
foreach ($pages as $page) {
$sections = $page->getSections();
if ($sections === null || (is_countable($sections) ? count($sections) : 0) === 0) {
continue;
}
in
vendor/shopware/core/Content/Category/SalesChannel/CategoryRoute.php
->
load
(line 86)
return new CategoryRouteResponse($category);
}
$resolverContext = new EntityResolverContext($context, $request, $this->categoryDefinition, $category);
$pages = $this->cmsPageLoader->load(
$request,
$this->createCriteria($pageId, $request),
$context,
$slotConfig,
$resolverContext
in
vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php
->
load
(line 73)
}
$key = $this->generateKey($navigationId, $request, $context);
if ($key === null) {
return $this->getDecorated()->load($navigationId, $request, $context);
}
$value = $this->cache->get($key, function (ItemInterface $item) use ($navigationId, $request, $context) {
$name = self::buildName($navigationId);
in
vendor/shopware/core/Profiling/Profiler.php
->
Shopware\Core\Content\Category\SalesChannel\{closure}
(line 67)
try {
foreach (self::$profilers as $profiler) {
$profiler->start($name, $category, $tags);
}
$result = $closure();
} finally {
foreach (self::$profilers as $profiler) {
$profiler->stop($name);
}
}
in
vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php
::
trace
(line 65)
{
if (Feature::isActive('cache_rework')) {
return $this->getDecorated()->load($navigationId, $request, $context);
}
return Profiler::trace('category-route', function () use ($navigationId, $request, $context) {
if ($context->hasState(...$this->states)) {
return $this->getDecorated()->load($navigationId, $request, $context);
}
$key = $this->generateKey($navigationId, $request, $context);
in
vendor/store.shopware.com/swagpaypal/src/Checkout/ExpressCheckout/SalesChannel/ExpressCategoryRoute.php
->
load
(line 48)
}
#[Route(path: '/store-api/category/{navigationId}', name: 'store-api.category.detail', methods: ['GET', 'POST'])]
public function load(string $navigationId, Request $request, SalesChannelContext $context): CategoryRouteResponse
{
$response = $this->inner->load($navigationId, $request, $context);
$route = $request->attributes->get('_route');
if (!\is_string($route) || empty($route)) {
return $response;
in
vendor/shopware/storefront/Page/Navigation/NavigationPageLoader.php
->
load
(line 41)
$page = NavigationPage::createFrom($page);
$navigationId = $request->get('navigationId', $context->getSalesChannel()->getNavigationCategoryId());
$category = $this->cmsPageRoute
->load($navigationId, $request, $context)
->getCategory();
if (!$category->getActive()) {
throw new CategoryNotFoundException($category->getId());
}
in
vendor/shopware/storefront/Controller/NavigationController.php
->
load
(line 35)
}
#[Route(path: '/', name: 'frontend.home.page', options: ['seo' => true], defaults: ['_httpCache' => true], methods: ['GET'])]
public function home(Request $request, SalesChannelContext $context): ?Response
{
$page = $this->navigationPageLoader->load($request, $context);
$this->hook(new NavigationPageLoadedHook($page, $context));
return $this->renderStorefront('@Storefront/storefront/page/content/index.html.twig', ['page' => $page]);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
home
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response, $event);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
$response = null;
try {
return $response = $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php
->
handle
(line 58)
$this->dispatcher->dispatch($event);
return $event->getResponse();
}
return parent::handle($request, $type, $catch);
}
}
in
vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php
->
handle
(line 86)
if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
}
try {
return $kernel->handle($request, $type, $catch);
} finally {
// restore global state
Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
}
}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
::
handle
(line 461)
protected function forward(Request $request, bool $catch = false, ?Response $entry = null): Response
{
$this->surrogate?->addSurrogateCapability($request);
// always a "master" request (as the real master request can be in cache)
$response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);
/*
* Support stale-if-error given on Responses or as a config option.
* RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
* Cache-Control directives) that
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
forward
(line 438)
// avoid that the backend sends no content
$subRequest->headers->remove('If-Modified-Since');
$subRequest->headers->remove('If-None-Match');
$response = $this->forward($subRequest, $catch);
if ($response->isCacheable()) {
$this->store($request, $response);
}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
fetch
(line 336)
}
if (null === $entry) {
$this->record($request, 'miss');
return $this->fetch($request, $catch);
}
if (!$this->isFreshEnough($request, $entry)) {
$this->record($request, 'stale');
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
lookup
(line 214)
reload the cache by fetching a fresh response and caching it (if possible).
*/
$this->record($request, 'reload');
$response = $this->fetch($request, $catch);
} else {
$response = $this->lookup($request, $catch);
}
$this->restoreResponseBody($request, $response);
if (HttpKernelInterface::MAIN_REQUEST === $type) {
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php
->
handle
(line 65)
// only handle main request inside http cache, because ESI tags are also interpreted as main request.
// sub requests are requests, which are forwarded to the kernel inside the php stack
// https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894
if ($type === HttpKernelInterface::MAIN_REQUEST) {
$response = parent::handle($request, $type, $catch);
} elseif ($request->attributes->has('_sw_esi')) {
$response = parent::handle($request, $type, $catch);
} else {
$response = $this->getKernel()->handle($request, $type, $catch);
}
in
vendor/shopware/core/Kernel.php
->
handle
(line 117)
{
if (!$this->booted) {
$this->boot();
}
return $this->getHttpKernel()->handle($request, $type, $catch);
}
public function boot(): void
{
if ($this->booted === true) {
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
if (Kernel::VERSION_ID >= 60400) {
$response->send(false);
if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/var/www/share/prelive.rau.dev.intocommerce.de/releases/20250512174806/vendor/autoload_runtime.php')
in
public/index.php
(line 11)
use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;
use Symfony\Component\HttpFoundation\Response;
$_SERVER['SCRIPT_FILENAME'] = __FILE__;
require_once __DIR__ . '/../vendor/autoload_runtime.php';
if (!file_exists(__DIR__ . '/../.env') && !file_exists(__DIR__ . '/../.env.dist') && !file_exists(__DIR__ . '/../.env.local.php')) {
$_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
}
Logs
Level | Channel | Message |
---|---|---|
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
INFO 19:59:01 | app | #1 Rule detection: Cart >= 0 (Payment) with priority 100 (id: 018c8692d68a721fa3d7d6378e2eb407) |
INFO 19:59:01 | app | #2 Rule detection: Cart >= 0 with priority 100 (id: 018c8692d6a173c6bd58b7c388be6d43) |
INFO 19:59:01 | app | #3 Rule detection: Always valid (Default) with priority 100 (id: 018c8692e63073d49fd50efdee14d753) |
INFO 19:59:01 | app | #4 Rule detection: Standard Versand with priority 100 (id: 018f197a74ca71d6acc5747c59e57390) |
INFO 19:59:01 | app | #5 Rule detection: Versand Deutschland with priority 100 (id: 018f197a7514716e9d5c53afabf2e642) |
INFO 19:59:01 | app | #6 Rule detection: Zahlungsart Vorkasse with priority 10 (id: 0192091a6111741b9a98db66e8a7f838) |
INFO 19:59:01 | app | #7 Rule detection: All customers with priority 1 (id: 018c8692d6e273b4a1e1881b541af727) |
INFO 19:59:01 | app | #8 Rule detection: Versandanschrift Deutschland with priority 1 (id: 018eec0c79807a4a9e73e4deb3802956) |
INFO 19:59:01 | app | #9 Rule detection: Bruttopreise with priority 1 (id: 019058c2f48377d79327f95e75d0bcb4) |
INFO 19:59:01 | app | #10 Rule detection: Bruttopreise with priority 1 (id: 0190590489297ae7b2a3f20ad8d129a4) |
INFO 19:59:01 | app | #11 Rule detection: Versandanschrift Deutschland Brutto with priority 1 (id: 0191b1c376c7703e9ef88960d5d527e0) |
INFO 19:59:01 | app | #12 Rule detection: Warenkorb Anzahl Produkte = 3 with priority 1 (id: 01939ad0886e762ba8d2e59f19311263) |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Shopware\Core\Checkout\Payment\Cart\PaymentHandler\PrePayment and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Shopware\Core\Checkout\Payment\Cart\PaymentHandler\DebitPayment and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Shopware\Core\Checkout\Payment\Cart\PaymentHandler\CashPayment and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Shopware\Core\Checkout\Payment\Cart\PaymentHandler\InvoicePayment and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Shopware\Core\Checkout\Payment\Cart\PaymentHandler\DefaultPayment and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\PayLaterHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\SEPAHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\VenmoHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\ApplePayHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\GooglePayHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\PUIHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\BancontactAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\BlikAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\EpsAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\GiropayAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\IdealAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\MultibancoAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\MyBankAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\OxxoAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\P24APMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\SofortAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since swag/paypal 10.0.0: tag:v10.0.0 - The Swag\PayPal\Checkout\Payment\Method\SofortAPMHandler service will be removed { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\TrustlyAPMHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\ACDCHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\PayPalPaymentHandler and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\CreditCard and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\DirectDebit and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Invoice and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\PayPal and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Prepaid and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Sofort and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Giropay and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Eps and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\Ideal and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\AmazonPay and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\ApplePay and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\GooglePay and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\ZiniaInstallment and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
INFO 19:59:01 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service CrefoPay\Payment\Core\Payment\Handler\ZiniaBNPL and will be removed in 6.7.0. Use `shopware.payment.handler` instead. { "exception": {} } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\Adapter\Cache\Event\HttpCacheKeyEvent" to listener "Maxia\MaxiaTaxSwitch6\Storefront\Subscriber\StorefrontSubscriber::onHttpCacheKeyEvent". { "event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\HttpCacheKeyEvent", "listener": "Maxia\\MaxiaTaxSwitch6\\Storefront\\Subscriber\\StorefrontSubscriber::onHttpCacheKeyEvent" } |
INFO 19:59:01 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "04a9b4" }, "request_uri": "https://prelive.rau.dev.intocommerce.de/_profiler/04a9b4?panel=exception&type=request", "method": "GET" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
INFO 19:59:01 | php |
Deprecated: Creation of dynamic property Acris\Navigation\Core\Content\Cms\DataResolver\Element\NavigationMediaCmsElementResolver::$navigationMediaService is deprecated { "exception": {} } |
INFO 19:59:01 | php |
Deprecated: Creation of dynamic property Acris\Navigation\Core\Content\Cms\DataResolver\Element\IconCategoryCmsElementResolver::$navigationMediaService is deprecated { "exception": {} } |
INFO 19:59:01 | php |
Deprecated: Creation of dynamic property Acris\Navigation\Core\Content\Cms\DataResolver\Element\ImageCategoryVerticalCmsElementResolver::$navigationMediaService is deprecated { "exception": {} } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "Dvsn\CheckoutRule\Subscriber\ControllerArgumentsSubscriber::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Dvsn\\CheckoutRule\\Subscriber\\ControllerArgumentsSubscriber::onControllerArguments" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "ContainerLydxhGi\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerLydxhGi\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Subscriber\EntityStatsSubscriber::onEntitySearched". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Subscriber\\EntityStatsSubscriber::onEntitySearched" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders". { "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent", "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheControlListener::__invoke". { "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent", "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheControlListener::__invoke" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Storefront\Framework\Routing\CanonicalLinkListener::__invoke". { "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent", "listener": "Shopware\\Storefront\\Framework\\Routing\\CanonicalLinkListener::__invoke" } |
DEBUG 19:59:01 | event |
Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Maxia\MaxiaTaxSwitch6\Storefront\Subscriber\StorefrontSubscriber::removeDuplicateSession". { "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent", "listener": "Maxia\\MaxiaTaxSwitch6\\Storefront\\Subscriber\\StorefrontSubscriber::removeDuplicateSession" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "Dvsn\CheckoutRule\Subscriber\ControllerArgumentsSubscriber::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Dvsn\\CheckoutRule\\Subscriber\\ControllerArgumentsSubscriber::onControllerArguments" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "ContainerLydxhGi\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerLydxhGi\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Shopware\Core\Content\Seo\SalesChannel\StoreApiSeoResolver::addSeoInformation". { "event": "kernel.response", "listener": "Shopware\\Core\\Content\\Seo\\SalesChannel\\StoreApiSeoResolver::addSeoInformation" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Shopware\Core\System\SalesChannel\Api\StoreApiResponseListener::encodeResponse". { "event": "kernel.response", "listener": "Shopware\\Core\\System\\SalesChannel\\Api\\StoreApiResponseListener::encodeResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelResponse". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCacheHeader". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCacheHeader" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Shopware\Core\Profiling\Integration\ServerTiming::onResponseEvent". { "event": "kernel.response", "listener": "Shopware\\Core\\Profiling\\Integration\\ServerTiming::onResponseEvent" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Frosh\Tools\Components\Elasticsearch\AdminInfoSubscriberEventListener::__invoke". { "event": "kernel.response", "listener": "Frosh\\Tools\\Components\\Elasticsearch\\AdminInfoSubscriberEventListener::__invoke" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Swag\Security\Subscriber\AdminSecurityFixesProvider::__invoke". { "event": "kernel.response", "listener": "Swag\\Security\\Subscriber\\AdminSecurityFixesProvider::__invoke" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Api\EventListener\ResponseHeaderListener::onResponse". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ResponseHeaderListener::onResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::response". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::response" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::onResponse". { "event": "kernel.response", "listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::onResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Maxia\MaxiaTaxSwitch6\Storefront\Subscriber\StorefrontSubscriber::updateCookie". { "event": "kernel.response", "listener": "Maxia\\MaxiaTaxSwitch6\\Storefront\\Subscriber\\StorefrontSubscriber::updateCookie" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCache". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCache" } |
DEBUG 19:59:01 | event |
Notified event "kernel.response" to listener "Maxia\MaxiaTaxSwitch6\Storefront\Subscriber\StorefrontSubscriber::updateContextHash". { "event": "kernel.response", "listener": "Maxia\\MaxiaTaxSwitch6\\Storefront\\Subscriber\\StorefrontSubscriber::updateContextHash" } |
DEBUG 19:59:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest". { "event": "kernel.request", "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "Dvsn\CheckoutRule\Subscriber\ControllerArgumentsSubscriber::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Dvsn\\CheckoutRule\\Subscriber\\ControllerArgumentsSubscriber::onControllerArguments" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "ContainerLydxhGi\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerLydxhGi\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 19:59:01 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
Stack Trace
EntityNotFoundException
|
---|
Shopware\Core\Framework\DataAbstractionLayer\Exception\EntityNotFoundException: product_stream for id 0193d451ff977279aef95721fc519b7a not found. at vendor/shopware/core/Content/ProductStream/Service/ProductStreamBuilder.php:38 at Shopware\Core\Content\ProductStream\Service\ProductStreamBuilder->buildFilters('0193d451ff977279aef95721fc519b7a', object(Context)) (vendor/shopware/core/Content/Product/Cms/ProductSliderCmsElementResolver.php:176) at Shopware\Core\Content\Product\Cms\ProductSliderCmsElementResolver->collectByProductStream(object(EntityResolverContext), object(FieldConfig), object(FieldConfigCollection)) (vendor/shopware/core/Content/Product/Cms/ProductSliderCmsElementResolver.php:76) at Shopware\Core\Content\Product\Cms\ProductSliderCmsElementResolver->collect(object(CmsSlotEntity), object(EntityResolverContext)) (vendor/store.shopware.com/maxialistingvariants6/src/Core/Content/Product/Cms/ProductSliderCmsElementResolver.php:65) at Maxia\MaxiaListingVariants6\Core\Content\Product\Cms\ProductSliderCmsElementResolver->collect(object(CmsSlotEntity), object(EntityResolverContext)) (vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php:62) at Shopware\Core\Content\Cms\DataResolver\CmsSlotsDataResolver->resolve(object(CmsSlotCollection), object(EntityResolverContext)) (vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php:112) at Shopware\Core\Content\Cms\SalesChannel\SalesChannelCmsPageLoader->loadSlotData(object(CmsSectionCollection), object(EntityResolverContext)) (vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php:99) at Shopware\Core\Content\Cms\SalesChannel\SalesChannelCmsPageLoader->load(object(Request), object(Criteria), object(SalesChannelContext), array('018e0ecc7a7473c3b88047386ebb6446' => array('content' => array('value' => '<span>Maximaler Stauraum</span><p>Fahrbare Montagewagen</p><a href="/produkte/wagen/montagewagen"></a>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e0ecc7a7572aea1d7b53ae32c6036' => array('url' => array('source' => 'static'), 'media' => array('value' => '018dd15f1e817cdeb6fcabf228249495', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '505px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '018e0ecc7a7572aea1d7b53ae3e855e0' => array('content' => array('value' => '<h1 style="color: #00A4E6;" class="h6">Arbeitsplatzeinrichtungen</h1><p><span style="font-size: 32px;"><b>Das Unternehmen werkbank<span style="color: #00A4E6;">360</span></b></span></p><p><b>werkbank<span style="color: #00A4E6;">360</span> – Rundum das Maximum</b> ist eine Marke der Reinhold P. Gerner GmbH und der führende Online-Shop im deutschsprachigen Raum für hochwertige Produkte im Bereich der Arbeitsplatzeinrichtungen. Wir bieten seit über 50 Jahren Kompetenz und Erfahrung für hochwertigste Arbeitsplätze in den Bereichen Industrie, Handwerk, öffentliche Einrichtungen und Werkstätten aber auch für den Privatgebrauch. Mehr als 7.500 Kunden vertrauen unserer Expertise über alle Branchen hinweg.</p><a class="btn btn-primary" href="/ueber-uns">Mehr über uns</a>', 'source' => 'static'), 'verticalAlign' => array('value' => 'center', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae628fb3f' => array('media' => array('value' => '018deab4edb179cc80d177a3cbf41b01', 'source' => 'static'), 'category' => array('value' => '018d6039a68a74b7855128c27111df0f', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae70d15cc' => array('media' => array('value' => '018dc6632b76703cbdb24cba9a972b79', 'source' => 'static'), 'category' => array('value' => '018d6037391679ff92cd1378b187d28e', 'source' => 'static'), 'linkType' => array('value' => 'custom', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('value' => 'https://werkbank360.de/produkte/werkbaenke/gestellbauweise?order=artikelnummer&p=1&properties=5f8b69df6f61463eb047f13546460c0d', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('value' => 'Fahrbar', 'source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae70f1509' => array('media' => array('value' => '0193976d25e179b6b112297f47994932', 'source' => 'static'), 'category' => array('value' => '018d60262e067d08b563732702592a29', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae87b8d14' => array('media' => array('value' => '018f2ee7a1d179d9999cb3fc69b0f3ba', 'source' => 'static'), 'category' => array('value' => '018d60297f1e7c2f8a6d31a3486f47fc', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae90dec71' => array('media' => array('value' => '018f2ee96ab97e6d830aae33047c093e', 'source' => 'static'), 'category' => array('value' => '018cc50e335a71709d0fc88d14d401b7', 'source' => 'static'), 'linkType' => array('value' => 'custom', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('value' => '/medienkanal', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('value' => 'Medienkanal', 'source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae9ea508e' => array('media' => array('value' => '019368ddace57db9a849feb880962677', 'source' => 'static'), 'category' => array('value' => '019363d71fc6795083916a54f2d62d07', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '630px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aea5e1466' => array('media' => array('value' => '018dc5d7cbd67d3e8f27ddcc25e4f341', 'source' => 'static'), 'category' => array('value' => '018d6045c9477399957c0140a65f3cea', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aead7af0c' => array('media' => array('value' => '018dc5d7cbd77691973b79ce61df129a', 'source' => 'static'), 'category' => array('value' => '018d6046d10a70fdbe506c518b609da6', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aeb57c761' => array('media' => array('value' => '0190269736ec7f93b72f15625ec7d3ec', 'source' => 'static'), 'category' => array('value' => '018d604d424d7ef5ae7117ecd03bd4ea', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aebea5992' => array('media' => array('value' => '018dc64babf57e80abeb1df20b81683e', 'source' => 'static'), 'category' => array('value' => '018d63ffa4fc76ad887d0a377766cf27', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aed50a7a5' => array('media' => array('value' => '018dcfe3ea4b76fcab1f870439587df6', 'source' => 'static'), 'category' => array('value' => '018d8922733075ebb439549c49aee6b8', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aedb0346d' => array('url' => array('value' => '124c71d524604ccbad6042edce3ac799/navigation/018cc50c8c4d709fa63cf1d09af46b70#', 'source' => 'static'), 'media' => array('value' => '018dd129ae937f148978984b74920e5c', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'category' => array('value' => '018cc50c8c4d709fa63cf1d09af46b70', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'none', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'horizontalAlign' => array('source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f90fed8b94' => array('media' => array('value' => '018dd4b698f470f081e271530cee4607', 'source' => 'static'), 'category' => array('value' => '018d89221c437205b45b39f58f1ca5c0', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '630px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f910cde78e' => array('media' => array('value' => '018dd4bea9a379b8b2e0ffe97f09366f', 'source' => 'static'), 'category' => array('value' => '018d8922b58d78ccba9d69d51e08c2a4', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#467634', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f91185920e' => array('media' => array('value' => '018dd4c21411711697b86fa95834d1a0', 'source' => 'static'), 'category' => array('value' => '018d8921b9d27d9880db0c1bfc70aad3', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f9129dece8' => array('content' => array('value' => '<p class="h3"><b><span style="font-size: 36px"><span style="color: rgb(255, 255, 255);">Gute Gründe für werkbank</span><span><font color="#00a4e6">360</font></span></span></b></p><ul><li><span style="background-color:transparent;">Über 12.000 Artikel</span></li><li><span style="background-color:transparent;">Erweiterbare Systeme mit passendem Zubehör</span></li><li><span style="background-color:transparent;">Hochwertige Materialien & herausragende Qualität</span></li><li><span style="background-color:transparent;">Für jede Anforderung die passende Lösung</span></li></ul>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e0ecc7a7673a0a5e4a2f9138399c9' => array('url' => array('source' => 'static'), 'media' => array('value' => '018cd9df0ab27bb287c1b4c561e0ee91', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'cover', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '018e0ecc7a7673a0a5e4a2f915109828' => array('title' => array('value' => '', 'source' => 'static'), 'border' => array('value' => false, 'source' => 'static'), 'rotate' => array('value' => false, 'source' => 'static'), 'products' => array('value' => '0193d451ff977279aef95721fc519b7a', 'source' => 'product_stream'), 'boxLayout' => array('value' => 'standard', 'source' => 'static'), 'elMinWidth' => array('value' => '320px', 'source' => 'static'), 'navigation' => array('value' => true, 'source' => 'static'), 'displayMode' => array('value' => 'standard', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'productStreamLimit' => array('value' => 10, 'source' => 'static'), 'maxiaListingVariants' => array('value' => array('maxia_listing_variants_cms_block_display_mode' => 'selected', 'maxia_listing_variants_cms_block_restricted_properties' => array('46d93244e5c245f98add4d3b853c37a2')), 'source' => 'static'), 'productStreamSorting' => array('value' => 'random', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f917bfe9cf' => array('content' => array('value' => '<p></p><p style="text-align: center;"><span style="color: rgb(255, 255, 255); font-size: 30px;"><b>Abonnieren Sie unseren Newsletter & sichern Sie sich</b></span></p><span style="font-size: 30px;"><p style="text-align: center;"><b><font color="#ffffff" style="font-size: 30px;"></font><font color="#00a4e6" style="font-size: 30px;">5%-Rabatt*</font></b><font color="#ffffff" style="font-size: 30px;"><b> auf Ihren nächsten Einkau</b>f</font></p></span><p></p><ul> <li><b>Monatliche Top-Angebote</b></li> <li><b>Informationen & News</b></li> <li><b>Gewinnspiele & News</b></li></ul>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e65de273172eb8c2b99b9c26c7fcb' => array('media' => array('value' => '018dcfe3ea4b76fcab1f870439587df6', 'source' => 'static'), 'category' => array('value' => '018d8922733075ebb439549c49aee6b8', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e646cdb95' => array('url' => array('value' => '124c71d524604ccbad6042edce3ac799/navigation/018cc50c8c4d709fa63cf1d09af46b70#', 'source' => 'static'), 'media' => array('value' => '018dd129ae937f148978984b74920e5c', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'category' => array('value' => '018cc50c8c4d709fa63cf1d09af46b70', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'none', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'horizontalAlign' => array('source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e64a972bb' => array('media' => array('value' => '018dd4b698f470f081e271530cee4607', 'source' => 'static'), 'category' => array('value' => '018d89221c437205b45b39f58f1ca5c0', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e6556eb8a' => array('media' => array('value' => '018dd4bea9a379b8b2e0ffe97f09366f', 'source' => 'static'), 'category' => array('value' => '018d8922b58d78ccba9d69d51e08c2a4', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#467634', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e6618249f' => array('media' => array('value' => '018dd4c21411711697b86fa95834d1a0', 'source' => 'static'), 'category' => array('value' => '018d8921b9d27d9880db0c1bfc70aad3', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e66102af27c5ca08a46ed7d0a6777' => array('title' => array('value' => '', 'source' => 'static'), 'border' => array('value' => false, 'source' => 'static'), 'rotate' => array('value' => true, 'source' => 'static'), 'products' => array('value' => '0193d451ff977279aef95721fc519b7a', 'source' => 'product_stream'), 'boxLayout' => array('value' => 'standard', 'source' => 'static'), 'elMinWidth' => array('value' => '300px', 'source' => 'static'), 'navigation' => array('value' => false, 'source' => 'static'), 'displayMode' => array('value' => 'standard', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'productStreamLimit' => array('value' => 4, 'source' => 'static'), 'maxiaListingVariants' => array('value' => array('maxia_listing_variants_cms_block_display_mode' => 'selected', 'maxia_listing_variants_cms_block_restricted_properties' => array('46d93244e5c245f98add4d3b853c37a2')), 'source' => 'static'), 'productStreamSorting' => array('value' => 'random', 'source' => 'static')), '0193cfca1cdc71b7a5637261c60ea0b2' => array('speed' => array('value' => 300, 'source' => 'static'), 'autoplay' => array('value' => true, 'source' => 'static'), 'animateIn' => array('source' => 'static'), 'autoSlide' => array('value' => true, 'source' => 'static'), 'minHeight' => array('value' => '300px', 'source' => 'static'), 'animateOut' => array('source' => 'static'), 'displayMode' => array('value' => 'contain', 'source' => 'static'), 'sliderItems' => array('value' => array(array('newTab' => false, 'mediaUrl' => 'https://werkbank360.de/media/50/39/a3/1742308317/Banner_Maschinenbau-Fertigungstechnik_Startseite_1054x564px.jpg?ts=1742308317')), 'source' => 'static'), 'enableFeature' => array('value' => true, 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'navigationDots' => array('source' => 'static'), 'autoplayTimeout' => array('value' => 5000, 'source' => 'static'), 'navigationArrows' => array('value' => 'inside', 'source' => 'static'), 'autoplayHoverPause' => array('value' => true, 'source' => 'static')), '0193cfca1cdc71b7a563726269b19ef0' => array('content' => array('value' => '<p class="h6" style="color: #00A4E6;">Branche</p><p class="h2" style="color: #FFFFFF;"> <b>Maschinenbau & Fertigungstechnik</b></p><p style="color: #FFFFFF; line-height: 1.5;" class="h6"><br> <b>Entdecken Sie unsere Produkte, die den AnforderungenIhrer Branche gerecht werden.</b></p><br><p style="text-align: center;" class="h6"> <a style="background-color: #00A4E6; color: #FFFFFF; padding: 20px 20px; text-decoration: none; border-radius: 0px; display: block; width: 85%; box-sizing: border-box; margin: 0 auto; margin-left: 0;" href="/branchen/maschinenbau-fertigungstechnik"> Jetzt entdecken! </a></p>', 'source' => 'static'), 'verticalAlign' => array('value' => 'center', 'source' => 'static')), '0194459437ad791e817279889f420836' => array('url' => array('source' => 'static'), 'media' => array('value' => '0194459761097f948bab929467e71429', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '0194459437ad791e81727989c2659472' => array('url' => array('source' => 'static'), 'media' => array('value' => '0194459761087bd3a6e9f900266c93e6', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '0194459437ad791e8172798a6ea2934f' => array('media' => array('value' => '01944597dd0b703dae12996074db9c35', 'source' => 'static'), 'category' => array('value' => '018d603f70f27317ba5c1bb9e8dfb066', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static'))), object(EntityResolverContext)) (vendor/store.shopware.com/netzppowerpack6/src/Core/Cms/SalesChannelCmsPageLoaderDecorator.php:25) at NetzpPowerPack6\Core\Cms\SalesChannelCmsPageLoaderDecorator->load(object(Request), object(Criteria), object(SalesChannelContext), array('018e0ecc7a7473c3b88047386ebb6446' => array('content' => array('value' => '<span>Maximaler Stauraum</span><p>Fahrbare Montagewagen</p><a href="/produkte/wagen/montagewagen"></a>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e0ecc7a7572aea1d7b53ae32c6036' => array('url' => array('source' => 'static'), 'media' => array('value' => '018dd15f1e817cdeb6fcabf228249495', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '505px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '018e0ecc7a7572aea1d7b53ae3e855e0' => array('content' => array('value' => '<h1 style="color: #00A4E6;" class="h6">Arbeitsplatzeinrichtungen</h1><p><span style="font-size: 32px;"><b>Das Unternehmen werkbank<span style="color: #00A4E6;">360</span></b></span></p><p><b>werkbank<span style="color: #00A4E6;">360</span> – Rundum das Maximum</b> ist eine Marke der Reinhold P. Gerner GmbH und der führende Online-Shop im deutschsprachigen Raum für hochwertige Produkte im Bereich der Arbeitsplatzeinrichtungen. Wir bieten seit über 50 Jahren Kompetenz und Erfahrung für hochwertigste Arbeitsplätze in den Bereichen Industrie, Handwerk, öffentliche Einrichtungen und Werkstätten aber auch für den Privatgebrauch. Mehr als 7.500 Kunden vertrauen unserer Expertise über alle Branchen hinweg.</p><a class="btn btn-primary" href="/ueber-uns">Mehr über uns</a>', 'source' => 'static'), 'verticalAlign' => array('value' => 'center', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae628fb3f' => array('media' => array('value' => '018deab4edb179cc80d177a3cbf41b01', 'source' => 'static'), 'category' => array('value' => '018d6039a68a74b7855128c27111df0f', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae70d15cc' => array('media' => array('value' => '018dc6632b76703cbdb24cba9a972b79', 'source' => 'static'), 'category' => array('value' => '018d6037391679ff92cd1378b187d28e', 'source' => 'static'), 'linkType' => array('value' => 'custom', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('value' => 'https://werkbank360.de/produkte/werkbaenke/gestellbauweise?order=artikelnummer&p=1&properties=5f8b69df6f61463eb047f13546460c0d', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('value' => 'Fahrbar', 'source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae70f1509' => array('media' => array('value' => '0193976d25e179b6b112297f47994932', 'source' => 'static'), 'category' => array('value' => '018d60262e067d08b563732702592a29', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae87b8d14' => array('media' => array('value' => '018f2ee7a1d179d9999cb3fc69b0f3ba', 'source' => 'static'), 'category' => array('value' => '018d60297f1e7c2f8a6d31a3486f47fc', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae90dec71' => array('media' => array('value' => '018f2ee96ab97e6d830aae33047c093e', 'source' => 'static'), 'category' => array('value' => '018cc50e335a71709d0fc88d14d401b7', 'source' => 'static'), 'linkType' => array('value' => 'custom', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('value' => '/medienkanal', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('value' => 'Medienkanal', 'source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53ae9ea508e' => array('media' => array('value' => '019368ddace57db9a849feb880962677', 'source' => 'static'), 'category' => array('value' => '019363d71fc6795083916a54f2d62d07', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '630px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aea5e1466' => array('media' => array('value' => '018dc5d7cbd67d3e8f27ddcc25e4f341', 'source' => 'static'), 'category' => array('value' => '018d6045c9477399957c0140a65f3cea', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aead7af0c' => array('media' => array('value' => '018dc5d7cbd77691973b79ce61df129a', 'source' => 'static'), 'category' => array('value' => '018d6046d10a70fdbe506c518b609da6', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aeb57c761' => array('media' => array('value' => '0190269736ec7f93b72f15625ec7d3ec', 'source' => 'static'), 'category' => array('value' => '018d604d424d7ef5ae7117ecd03bd4ea', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => 0, 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aebea5992' => array('media' => array('value' => '018dc64babf57e80abeb1df20b81683e', 'source' => 'static'), 'category' => array('value' => '018d63ffa4fc76ad887d0a377766cf27', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aed50a7a5' => array('media' => array('value' => '018dcfe3ea4b76fcab1f870439587df6', 'source' => 'static'), 'category' => array('value' => '018d8922733075ebb439549c49aee6b8', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7572aea1d7b53aedb0346d' => array('url' => array('value' => '124c71d524604ccbad6042edce3ac799/navigation/018cc50c8c4d709fa63cf1d09af46b70#', 'source' => 'static'), 'media' => array('value' => '018dd129ae937f148978984b74920e5c', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'category' => array('value' => '018cc50c8c4d709fa63cf1d09af46b70', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'none', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'horizontalAlign' => array('source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f90fed8b94' => array('media' => array('value' => '018dd4b698f470f081e271530cee4607', 'source' => 'static'), 'category' => array('value' => '018d89221c437205b45b39f58f1ca5c0', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '630px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f910cde78e' => array('media' => array('value' => '018dd4bea9a379b8b2e0ffe97f09366f', 'source' => 'static'), 'category' => array('value' => '018d8922b58d78ccba9d69d51e08c2a4', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#467634', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f91185920e' => array('media' => array('value' => '018dd4c21411711697b86fa95834d1a0', 'source' => 'static'), 'category' => array('value' => '018d8921b9d27d9880db0c1bfc70aad3', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f9129dece8' => array('content' => array('value' => '<p class="h3"><b><span style="font-size: 36px"><span style="color: rgb(255, 255, 255);">Gute Gründe für werkbank</span><span><font color="#00a4e6">360</font></span></span></b></p><ul><li><span style="background-color:transparent;">Über 12.000 Artikel</span></li><li><span style="background-color:transparent;">Erweiterbare Systeme mit passendem Zubehör</span></li><li><span style="background-color:transparent;">Hochwertige Materialien & herausragende Qualität</span></li><li><span style="background-color:transparent;">Für jede Anforderung die passende Lösung</span></li></ul>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e0ecc7a7673a0a5e4a2f9138399c9' => array('url' => array('source' => 'static'), 'media' => array('value' => '018cd9df0ab27bb287c1b4c561e0ee91', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'cover', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '018e0ecc7a7673a0a5e4a2f915109828' => array('title' => array('value' => '', 'source' => 'static'), 'border' => array('value' => false, 'source' => 'static'), 'rotate' => array('value' => false, 'source' => 'static'), 'products' => array('value' => '0193d451ff977279aef95721fc519b7a', 'source' => 'product_stream'), 'boxLayout' => array('value' => 'standard', 'source' => 'static'), 'elMinWidth' => array('value' => '320px', 'source' => 'static'), 'navigation' => array('value' => true, 'source' => 'static'), 'displayMode' => array('value' => 'standard', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'productStreamLimit' => array('value' => 10, 'source' => 'static'), 'maxiaListingVariants' => array('value' => array('maxia_listing_variants_cms_block_display_mode' => 'selected', 'maxia_listing_variants_cms_block_restricted_properties' => array('46d93244e5c245f98add4d3b853c37a2')), 'source' => 'static'), 'productStreamSorting' => array('value' => 'random', 'source' => 'static')), '018e0ecc7a7673a0a5e4a2f917bfe9cf' => array('content' => array('value' => '<p></p><p style="text-align: center;"><span style="color: rgb(255, 255, 255); font-size: 30px;"><b>Abonnieren Sie unseren Newsletter & sichern Sie sich</b></span></p><span style="font-size: 30px;"><p style="text-align: center;"><b><font color="#ffffff" style="font-size: 30px;"></font><font color="#00a4e6" style="font-size: 30px;">5%-Rabatt*</font></b><font color="#ffffff" style="font-size: 30px;"><b> auf Ihren nächsten Einkau</b>f</font></p></span><p></p><ul> <li><b>Monatliche Top-Angebote</b></li> <li><b>Informationen & News</b></li> <li><b>Gewinnspiele & News</b></li></ul>', 'source' => 'static'), 'verticalAlign' => array('source' => 'static')), '018e65de273172eb8c2b99b9c26c7fcb' => array('media' => array('value' => '018dcfe3ea4b76fcab1f870439587df6', 'source' => 'static'), 'category' => array('value' => '018d8922733075ebb439549c49aee6b8', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e646cdb95' => array('url' => array('value' => '124c71d524604ccbad6042edce3ac799/navigation/018cc50c8c4d709fa63cf1d09af46b70#', 'source' => 'static'), 'media' => array('value' => '018dd129ae937f148978984b74920e5c', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'category' => array('value' => '018cc50c8c4d709fa63cf1d09af46b70', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'none', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'horizontalAlign' => array('source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e64a972bb' => array('media' => array('value' => '018dd4b698f470f081e271530cee4607', 'source' => 'static'), 'category' => array('value' => '018d89221c437205b45b39f58f1ca5c0', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e6556eb8a' => array('media' => array('value' => '018dd4bea9a379b8b2e0ffe97f09366f', 'source' => 'static'), 'category' => array('value' => '018d8922b58d78ccba9d69d51e08c2a4', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#467634', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e65de273270c9afa3a43e6618249f' => array('media' => array('value' => '018dd4c21411711697b86fa95834d1a0', 'source' => 'static'), 'category' => array('value' => '018d8921b9d27d9880db0c1bfc70aad3', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '#62AA47', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '#376b24', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static')), '018e66102af27c5ca08a46ed7d0a6777' => array('title' => array('value' => '', 'source' => 'static'), 'border' => array('value' => false, 'source' => 'static'), 'rotate' => array('value' => true, 'source' => 'static'), 'products' => array('value' => '0193d451ff977279aef95721fc519b7a', 'source' => 'product_stream'), 'boxLayout' => array('value' => 'standard', 'source' => 'static'), 'elMinWidth' => array('value' => '300px', 'source' => 'static'), 'navigation' => array('value' => false, 'source' => 'static'), 'displayMode' => array('value' => 'standard', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'productStreamLimit' => array('value' => 4, 'source' => 'static'), 'maxiaListingVariants' => array('value' => array('maxia_listing_variants_cms_block_display_mode' => 'selected', 'maxia_listing_variants_cms_block_restricted_properties' => array('46d93244e5c245f98add4d3b853c37a2')), 'source' => 'static'), 'productStreamSorting' => array('value' => 'random', 'source' => 'static')), '0193cfca1cdc71b7a5637261c60ea0b2' => array('speed' => array('value' => 300, 'source' => 'static'), 'autoplay' => array('value' => true, 'source' => 'static'), 'animateIn' => array('source' => 'static'), 'autoSlide' => array('value' => true, 'source' => 'static'), 'minHeight' => array('value' => '300px', 'source' => 'static'), 'animateOut' => array('source' => 'static'), 'displayMode' => array('value' => 'contain', 'source' => 'static'), 'sliderItems' => array('value' => array(array('newTab' => false, 'mediaUrl' => 'https://werkbank360.de/media/50/39/a3/1742308317/Banner_Maschinenbau-Fertigungstechnik_Startseite_1054x564px.jpg?ts=1742308317')), 'source' => 'static'), 'enableFeature' => array('value' => true, 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'navigationDots' => array('source' => 'static'), 'autoplayTimeout' => array('value' => 5000, 'source' => 'static'), 'navigationArrows' => array('value' => 'inside', 'source' => 'static'), 'autoplayHoverPause' => array('value' => true, 'source' => 'static')), '0193cfca1cdc71b7a563726269b19ef0' => array('content' => array('value' => '<p class="h6" style="color: #00A4E6;">Branche</p><p class="h2" style="color: #FFFFFF;"> <b>Maschinenbau & Fertigungstechnik</b></p><p style="color: #FFFFFF; line-height: 1.5;" class="h6"><br> <b>Entdecken Sie unsere Produkte, die den AnforderungenIhrer Branche gerecht werden.</b></p><br><p style="text-align: center;" class="h6"> <a style="background-color: #00A4E6; color: #FFFFFF; padding: 20px 20px; text-decoration: none; border-radius: 0px; display: block; width: 85%; box-sizing: border-box; margin: 0 auto; margin-left: 0;" href="/branchen/maschinenbau-fertigungstechnik"> Jetzt entdecken! </a></p>', 'source' => 'static'), 'verticalAlign' => array('value' => 'center', 'source' => 'static')), '0194459437ad791e817279889f420836' => array('url' => array('source' => 'static'), 'media' => array('value' => '0194459761097f948bab929467e71429', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '0194459437ad791e81727989c2659472' => array('url' => array('source' => 'static'), 'media' => array('value' => '0194459761087bd3a6e9f900266c93e6', 'source' => 'static'), 'newTab' => array('value' => false, 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'horizontalAlign' => array('source' => 'static')), '0194459437ad791e8172798a6ea2934f' => array('media' => array('value' => '01944597dd0b703dae12996074db9c35', 'source' => 'static'), 'category' => array('value' => '018d603f70f27317ba5c1bb9e8dfb066', 'source' => 'static'), 'linkType' => array('value' => 'category', 'source' => 'static'), 'minHeight' => array('value' => '307px', 'source' => 'static'), 'customLink' => array('source' => 'static'), 'displayMode' => array('value' => 'stretch', 'source' => 'static'), 'textBoxAlign' => array('value' => 'left', 'source' => 'static'), 'textBoxColor' => array('value' => '', 'source' => 'static'), 'verticalAlign' => array('source' => 'static'), 'customLinkName' => array('source' => 'static'), 'imageAnimation' => array('value' => 'zoom', 'source' => 'static'), 'textBoxBgColor' => array('value' => '', 'source' => 'static'), 'textBoxFontSize' => array('value' => '', 'source' => 'static'), 'customLinkTarget' => array('value' => false, 'source' => 'static'), 'textBoxHoverColor' => array('value' => '', 'source' => 'static'), 'textBoxTextShadow' => array('value' => false, 'source' => 'static'), 'textBoxHoverBgColor' => array('value' => '', 'source' => 'static'), 'textBoxTextTransform' => array('value' => 'default', 'source' => 'static'))), object(EntityResolverContext)) (vendor/shopware/core/Content/Category/SalesChannel/CategoryRoute.php:86) at Shopware\Core\Content\Category\SalesChannel\CategoryRoute->load('018c8692d6ae70329a394e831e195fb6', object(Request), object(SalesChannelContext)) (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:73) at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->Shopware\Core\Content\Category\SalesChannel\{closure}() (vendor/shopware/core/Profiling/Profiler.php:67) at Shopware\Core\Profiling\Profiler::trace('category-route', object(Closure)) (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:65) at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->load('018c8692d6ae70329a394e831e195fb6', object(Request), object(SalesChannelContext)) (vendor/store.shopware.com/swagpaypal/src/Checkout/ExpressCheckout/SalesChannel/ExpressCategoryRoute.php:48) at Swag\PayPal\Checkout\ExpressCheckout\SalesChannel\ExpressCategoryRoute->load('018c8692d6ae70329a394e831e195fb6', object(Request), object(SalesChannelContext)) (vendor/shopware/storefront/Page/Navigation/NavigationPageLoader.php:41) at Shopware\Storefront\Page\Navigation\NavigationPageLoader->load(object(Request), object(SalesChannelContext)) (vendor/shopware/storefront/Controller/NavigationController.php:35) at Shopware\Storefront\Controller\NavigationController->home(object(Request), object(SalesChannelContext)) (vendor/symfony/http-kernel/HttpKernel.php:183) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:58) at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86) at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 1, true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:461) at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:438) at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch(object(Request), true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:336) at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup(object(Request), true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:214) at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true) (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:65) at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true) (vendor/shopware/core/Kernel.php:117) at Shopware\Core\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/var/www/share/prelive.rau.dev.intocommerce.de/releases/20250512174806/vendor/autoload_runtime.php') (public/index.php:11) |