セットアップスクリプトによるCMSブロックの追加


19

私は、同じサイトに9つの別々のMagentoインスタンスがあるサイトで作業しています。

したがって、バックエンドデータを取り巻く厳密な手順があります-構成、さらにはCMSブロックに対してもです。

セットアップスクリプトを使用してCMSブロックを追加する方法を知りたいです。

回答:


36

このため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.xml1.0.5クリアし、ページを更新します。


CMSのブロックを追加することはほとんどバグ修正ではないため、機能のバージョンを上げる必要があります。😜– user487772 18
1

Mage::app()->getStores()同じことをしますか?
user487772


4

代わりに 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'
);

また、こちらは便利な記事です


1

アップグレードスクリプトで以下のコードを使用することもできます。

$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();

回避できる場合は、ダイレクトSQLを使用してデータベースにコンテンツを追加しないでください(ほとんどの場合)。この場合、モデルcms / blockを使用してデータを安全に追加できます。
イアン14年

0

次のコードは、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();

}

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.