Para isso, sugiro usar a data
pasta de um de seus módulos personalizados.
Digamos que o módulo esteja atualmente na versão 1.0.4
.
Crie o arquivo data/[module]_setup/data-upgrade-1.0.4-1.0.5.php
com o seguinte conteúdo:
Editar: nome do arquivo alterado
$content = 'BLOCK CONTENT HERE';
//if you want one block for each store view, get the store collection
$stores = Mage::getModel('core/store')->getCollection()->addFieldToFilter('store_id', array('gt'=>0))->getAllIds();
//if you want one general block for all the store viwes, uncomment the line below
//$stores = array(0);
foreach ($stores as $store){
$block = Mage::getModel('cms/block');
$block->setTitle('Block title here');
$block->setIdentifier('block_identifier_here');
$block->setStores(array($store));
$block->setIsActive(1);
$block->setContent($content);
$block->save();
}
Depois disso, basta alterar a versão config.xml
para 1.0.5
limpar o cache e atualizar qualquer página.