Skip to content

Instantly share code, notes, and snippets.

@antoinekociuba
Last active October 26, 2015 11:25
Show Gist options
  • Save antoinekociuba/aae66a9ec5241062680d to your computer and use it in GitHub Desktop.
Save antoinekociuba/aae66a9ec5241062680d to your computer and use it in GitHub Desktop.
Magento CMS Pages installer script (useful to deploy safely).
<?php
/**
* CMS Pages Installer
*/
try {
/* @var $installer Mage_Core_Model_Resource_Setup */
$installer = $this;
$page1Content = <<<HTML
Lorem ipsum dolor sit amet, consectetur adipisicing elit. At, aut debitis distinctio ducimus eum eveniet ex id ipsum laudantium mollitia nisi perspiciatis placeat quae quaerat tempora vitae voluptatem voluptatibus voluptatum!
HTML;
$page2Content = <<<HTML
Lorem ipsum dolor sit amet, consectetur adipisicing elit. A, autem consequuntur corporis debitis dignissimos dolorum enim fuga in laborum modi molestiae necessitatibus nihil nostrum omnis porro quaerat qui quidem repellendus.
HTML;
$cmsPagesData = array(
array(
'title' => 'Title',
'content_heading' => 'Heading',
'meta_keywords' => 'Meta keywords', // Optional
'meta_description' => 'Meta Description', // Optional
'root_template' => 'one_column',
'identifier' => 'identifier1', // URL Key, must be unique
'content' => $page1Content,
'is_active' => true,
'under_version_control' => 0, // EE specific
'stores' => array(Mage_Core_Model_App::ADMIN_STORE_ID)
),
array(
'title' => 'Title',
'content_heading' => 'Heading',
'meta_keywords' => 'Meta keywords', // Optional
'meta_description' => 'Meta Description', // Optional
'root_template' => 'one_column',
'identifier' => 'identifier2', // URL Key, must be unique
'content' => $page2Content,
'is_active' => true,
'under_version_control' => 0, // EE specific
'stores' => array(Mage_Core_Model_App::ADMIN_STORE_ID)
)
);
/* @var $block Mage_Cms_Model_Page */
$cmsPageModel = Mage::getModel('cms/page');
foreach ($cmsPagesData as $data) {
$cmsPage = clone $cmsPageModel;
$cmsPage->setStoreId($data['stores'][0])
->load($data['identifier'], 'identifier');
// Create CMS block if it doesn't exist
if (!$cmsPage->getId()) {
$cmsPage->setData($data);
} else {
// Uncomment to update all array data
//$cmsPage->addData($data);
// Specific data update
$cmsPage->addData(array(
'content' => $data['content']
));
}
$cmsPage->save();
}
} catch (Exception $e) {
Mage::logException($e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment