Untuk ini, saya sarankan menggunakan data
folder salah satu modul khusus Anda.
Katakanlah modul saat ini dalam versi 1.0.4
.
Buat file data/[module]_setup/data-upgrade-1.0.4-1.0.5.php
dengan konten berikut:
Edit: mengubah nama file
$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();
}
Setelah ini, cukup ubah versi config.xml
untuk 1.0.5
menghapus cache dan menyegarkan halaman mana pun.