Skip to content

Instantly share code, notes, and snippets.

@aleron75
Created June 16, 2015 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aleron75/f453dcc15f97d5e616df to your computer and use it in GitHub Desktop.
Save aleron75/f453dcc15f97d5e616df to your computer and use it in GitHub Desktop.
Magento Compare Version
<?php
class Myvendor_Mymodule_Helper_Data extends Mage_Core_Helper_Data
{
/**
* Check whether current Magento version supports Transactions
*/
public function isTransactionSupported()
{
return version_compare(Mage::getVersion(), '1.4.0.1', '>');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment