Skip to content

Instantly share code, notes, and snippets.

@peterjaap
Created May 16, 2013 12:25
Show Gist options
  • Save peterjaap/5591360 to your computer and use it in GitHub Desktop.
Save peterjaap/5591360 to your computer and use it in GitHub Desktop.
Check for enterprise & version
<?php
$enterprise = Mage::getConfig()->getNode('modules/Enterprise_PageCache/active');
$checkForVersion = ($enterprise ? '1.12' : '1.7.0.0');
if(version_compare(Mage::getVersion(), $checkForVersion, '<')) {
$this->setTemplate('blockip/sales_order_view_info_16xx.phtml');
} else {
$this->setTemplate('blockip/sales_order_view_info_17xx.phtml');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment