回答:
このためdata
、カスタムモジュールのいずれかのフォルダーを使用することをお勧めします。
モジュールが現在versionにあるとしましょう1.0.4
。
data/[module]_setup/data-upgrade-1.0.4-1.0.5.php
次の内容でファイルを作成します。
編集:ファイル名を変更
$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();
}
この後、バージョンを変更してキャッシュconfig.xml
を1.0.5
クリアし、ページを更新します。
Mage::app()->getStores()
同じことをしますか?
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
$staticBlock = array(
'title' => 'Test Block',
'identifier' => 'test-block',
'content' => 'Sample Test Block',
'is_active' => 1,
'stores' => array(0)
);
Mage::getModel('cms/block')->setData($staticBlock)->save();
から:http : //blog.chapagain.com.np/magento-create-cms-page-static-block-programmatically/#sthash.1FYKYYhI.dpuf
代わりに sql
フォルダー CMSデータを変更するセットアップスクリプトをフォルダーに配置する必要がありdata
ます。app/code/core/Mage/Cms/data/cms_setup
いくつかの良い例をご覧ください。これらのインストールスクリプトは、静的ブロックとCMSページを追加します。
設定値を変更するには、次のコードを使用します。
$installer->setConfigData(
Mage_Page_Model_Config::XML_PATH_CMS_LAYOUTS,
'your_value_here'
);
また、こちらは便利な記事です
アップグレードスクリプトで以下のコードを使用することもできます。
$installer = $this;
/* @var $installer Mage_Core_Model_Resource_Setup */
$connection = $installer->getConnection();
/* @var $connection Varien_Db_Adapter_Pdo_Mysql */
$installer->startSetup();
$connection->insert($installer->getTable('cms/block'), array(
'title' => 'Footer Links',
'identifier' => 'footer-links',
'content' => '<ul>\r\n<li><a href=\"{{store direct_url=\"about-magento-demo-store\"}}\">About Us</a></li>\r\n<li class=\"last\"><a href=\"{{store direct_url=\"customer-service\"}}\">Customer Service</a></li>\r\n</ul>',
'creation_time' => now(),
'update_time' => now(),
));
$connection->insert($installer->getTable('cms/block_store'), array(
'block_id' => $connection->lastInsertId(),
'store_id' => 0
));
$installer->endSetup();
次のコードは、magentoスクリプトを使用して静的ブロックを作成および更新します
http://www.pearlbells.co.uk/how-to-create-and-update-the-static-blocks-using-magento-script/
function createBlock($blockData) {
$block = Mage::getModel('cms/block')->load($blockData['identifier']);
$block->setTitle($blockData['title']);
$block->setIdentifier($blockData['identifier']);
$block->setStores(array($blockData['storeId']));
$block->setIsActive($blockData['active']);
$block->setContent($blockData['content']);
$block->save();
}