Created
July 25, 2013 11:16
-
-
Save danielkmariam/6078796 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$installer = $this; | |
$installer->startSetup(); | |
$storeId = Mage::getModel('core/store')->load('fudge_en_gb')->getId(); | |
$installer->setConfigData('carriers/flatrate1/name', "UK Standard Delivery (3-5 days)", 'stores', $storeId); | |
$installer->setConfigData('carriers/flatrate2/name', "UK Express Delivery (Order by 2pm for next day)", 'stores', $storeId); | |
$installer->setConfigData('carriers/freeshipping/name', "UK Standard Delivery (3-5 days)", 'stores', $storeId); | |
$installer->setConfigData('payment/ops_cc/title', "Credit Card", 'stores', $storeId); | |
$baseUrl = Mage::getStoreConfig('web/unsecure/base_sanctuary_drupal_url', $storeId); | |
$url = "{$baseUrl}terms-conditions"; | |
$agreementObj = Mage::getModel('checkout/agreement'); | |
// disable all active terms and conditions | |
$agreements = $agreementObj->getResourceCollection(); | |
foreach ($agreements as $agreement) { | |
$agreement->setIsActive(0); | |
$agreementObj->setStores(array($storeId)); | |
$agreement->save(); | |
} | |
// Create new Terms and condition | |
$agreementObj = Mage::getModel('checkout/agreement'); | |
$agreementObj->setName('terms and conditions'); | |
$agreementObj->setContent('terms and conditions'); | |
$agreementObj->setCheckboxText(' <em>*</em> I agree to Fudge <a href="'.$url.'" target="_blank">Terms and Conditions</a>'); | |
$agreementObj->setIsActive(1); | |
$agreementObj->setIsHtml(1); | |
$agreementObj->setStores(array($storeId)); | |
$agreementObj = $agreementObj->save(); | |
$installer->endSetup(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment