Đối với điều này, tôi đề nghị sử dụng data
thư mục của một trong các mô-đun tùy chỉnh của bạn.
Hãy nói rằng mô-đun hiện đang ở phiên bản 1.0.4
.
Tạo tập tin data/[module]_setup/data-upgrade-1.0.4-1.0.5.php
với nội dung sau:
Chỉnh sửa: thay đổi tên tập tin
$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();
}
Sau đó, chỉ cần thay đổi phiên bản config.xml
để 1.0.5
xóa bộ nhớ cache và làm mới bất kỳ trang nào.