- Issue created by @jacobupal
- Status changed to Closed: duplicate
8 months ago 12:33pm 20 August 2024 - 🇬🇧United Kingdom jacobupal Leeds
Ok, my bad... Didn't realise this had been fixed elsewhere, just not released yet.
I appear to have an error similar to this one 💬 Class "Drupal\feeds\Feeds\Target\NameTarget" not found Fixed which was raised in the feeds module last year.
This was caused by an incorrect namespace.
Here is my error:
Error: Class "Drupal\country\Feeds\Target\Country" not found in Drupal\feeds\Entity\FeedType->getMappingTargets() (line 305 of /web/modules/contrib/feeds/src/Entity/FeedType.php)
#0 /web/modules/contrib/feeds/src/Entity/FeedType.php(497): Drupal\feeds\Entity\FeedType->getMappingTargets()
#1 /web/modules/contrib/feeds/src/Feeds/Processor/EntityProcessorBase.php(1180): Drupal\feeds\Entity\FeedType->getTargetPlugin()
#2 /web/modules/contrib/feeds/src/Feeds/Processor/EntityProcessorBase.php(218): Drupal\feeds\Feeds\Processor\EntityProcessorBase->existingEntityId()
#3 /web/modules/contrib/feeds/src/EventSubscriber/LazySubscriber.php(109): Drupal\feeds\Feeds\Processor\EntityProcessorBase->process()
#4 [internal function]: Drupal\feeds\EventSubscriber\LazySubscriber->Drupal\feeds\EventSubscriber\{closure}()
#5 /web/core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php(111): call_user_func()
#6 /web/modules/contrib/feeds/src/Event/EventDispatcherTrait.php(41): Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch()
#7 /web/modules/contrib/feeds/src/FeedsExecutable.php(267): Drupal\feeds\FeedsExecutable->dispatchEvent()
#8 /web/modules/contrib/feeds/src/FeedsExecutable.php(111): Drupal\feeds\FeedsExecutable->doProcess()
#9 /web/modules/contrib/feeds/src/Plugin/QueueWorker/FeedRefresh.php(42): Drupal\feeds\FeedsExecutable->processItem()
#10 /web/core/lib/Drupal/Core/Cron.php(268): Drupal\feeds\Plugin\QueueWorker\FeedRefresh->processItem()
#11 /web/core/lib/Drupal/Core/Cron.php(233): Drupal\Core\Cron->processQueue()
#12 /web/core/lib/Drupal/Core/Cron.php(162): Drupal\Core\Cron->processQueues()
#13 /web/core/lib/Drupal/Core/ProxyClass/Cron.php(75): Drupal\Core\Cron->run()
#14 /web/core/modules/automated_cron/src/EventSubscriber/AutomatedCron.php(65): Drupal\Core\ProxyClass\Cron->run()
#15 [internal function]: Drupal\automated_cron\EventSubscriber\AutomatedCron->onTerminate()
#16 /web/core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php(111): call_user_func()
#17 /vendor/symfony/http-kernel/HttpKernel.php(115): Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch()
#18 /web/core/lib/Drupal/Core/StackMiddleware/StackedHttpKernel.php(66): Symfony\Component\HttpKernel\HttpKernel->terminate()
#19 /web/core/lib/Drupal/Core/DrupalKernel.php(715): Drupal\Core\StackMiddleware\StackedHttpKernel->terminate()
#20 /web/index.php(22): Drupal\Core\DrupalKernel->terminate()
#21 {main}
Change line 3 of /country/src/Feeds/Target/Country.php from
namespace Drupal\feeds\Feeds\Target;
to
namespace Drupal\country\Feeds\Target;
Closed: duplicate
2.0
Code
Ok, my bad... Didn't realise this had been fixed elsewhere, just not released yet.