Magento: call a custom block in CMS
问题 I’m trying to create my own module for Magento 1.9.1. In my module, I am trying to call a block in CMS content like this: {{block type="core/template" template="myNamespace/myModulOutput.phtml"}} The myModulOutput.phtml template contains a collection from my own controller: class myNamespace_myModelname_Block extends Mage_Core_Block_Template { public function getCollection() { // some code return $collection; } } The module seems to be active and shows up in Magento backend with this