답변:
이를 data
위해 사용자 정의 모듈 중 하나의 폴더를 사용하는 것이 좋습니다 .
모듈이 현재 버전이라고 가정 해 봅시다 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();
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();
}