Category: Magento Module

magento 2, Magento 2 Dev Guide Book Note, Magento Module

Magento 2: How to call any template block from phtml file?

  https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-14-04-lts In Magento 1.x, you could call/print any module’s template block in any other template (phtml) file with the following code: 1 2 3 4 echo $this->getLayout()           ->createBlock('newmodule/newblock')           ->setTemplate('newmodule/newblock.phtml')           ->toHtml(); In Magento 2.x, it’s slightly different. Below is the...