Shopware 5 - 删除文章时在后端使用哪个事件

Shopware 5 - Which event is used in backend when deleting an article

我想知道删除文章时 Shopware 5 后端使用了哪个事件,我在浏览器的网络选项卡中看到 controller ArticleList 方法 deleteProduct被调用

如上所说,一个“后端模块商品商店的事件监听函数”

所以我的问题是,我正在制作一个自定义插件,我必须在删除文章时添加更多逻辑。

我可以使用任何事件或挂钩吗?

您可以为此使用学说事件:https://developers.shopware.com/developers-guide/models/#remove-event

我通过这种方式解决了我的问题,希望对以后的人有所帮助。

// subscribe to an event
public static function getSubscribedEvents()
{
    return [
        'Enlight_Controller_Action_PostDispatchSecure_Backend_ArticleList' => 'onArticleListPostDispatch'
    ];
}

// add the logic to your subscribed method
public function onArticleListPostDispatch(\Enlight_Event_EventArgs $args)
{
    $controller = $args->getSubject();        
    $request = $controller->Request();

    if ($request->getActionName() == 'deleteProduct') {
          
            // add your logic here
    }
}