use Shopware\Components\Plugin\Context\ActivateContext;
public function activate(ActivateContext $context)
{
$context->scheduleClearCache(ActivateContext::CACHE_LIST_FRONTEND);
}
Bin mir da gerade nciht sicher, aber beim reinen speichern der Konfig im Plugin gibt es glaube ich aktuell kein Event. Nur
use Shopware\Components\Plugin\Context\ActivateContext;
use Shopware\Components\Plugin\Context\DeactivateContext;
use Shopware\Components\Plugin\Context\InstallContext;
use Shopware\Components\Plugin\Context\UninstallContext;
use Shopware\Components\Plugin\Context\UpdateContext;
Ich habe das Löschen von Cache jetzt verworfen, und lese statt dessen die aktuellen Werte unter Einbeziehung der ShopID aus der s_core_config_values aus.