Mit diesem Codeschnipsel erhält man eine Liste aller statischen Blöcke, die unter CMS->Statische Blöcke verfügbar sind.
$collection = Mage::getModel('cms/block')->getCollection(); foreach ($collection as $block) { /** @var $block Mage_Cms_Model_Block */ echo '<p>Blocktitle $block->title, Block-Identifier: $block->identifier</p>'; }