Magento 2 Observer Event for core_block_abstract_to_html_after Replacement

event-observermagento2

I use the "core_block_abstract_to_html_after" event in magento 1. What is the equivalent in Magento 2?

enter image description here

Best Answer

It seems that \Magento\Framework\View\Element\AbstractBlock::toHtml haven't such event. You can achieve such result in different ways:

  1. If you need to add some customization for specific block, you can use it's _afterToHtml method.
  2. To customize all block's output globally, use plugin for Magento\Framework\View\Element\AbstractBlock and implement aftreToHtml method. More information available here: http://devdocs.magento.com/guides/v2.0/extension-dev-guide/plugins.html
Related Topic