Magento Event On Any Page Load

后端 未结 4 704
伪装坚强ぢ
伪装坚强ぢ 2020-12-13 20:03

I am wondering if there is an event that is fired once every time a page is loaded before rendering to html in magento?

This might be useful if you want to do some b

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-13 20:44

    We can use controller_front_init_routers event using observer. In that observer method,you can get request object as follows.

    $request = $observer->getEvent()->getData('front')->getRequest();

提交回复
热议问题