Created
August 29, 2013 15:40
-
-
Save danielkmariam/6379731 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 | |
/** | |
* @category Fishpig | |
* @package Fishpig_Wordpress | |
* @license http://fishpig.co.uk/license.txt | |
* @author Ben Tideswell <[email protected]> | |
*/ | |
/** | |
* This code file is included when running a version of Magento that does not | |
* have the new resource DB models | |
* | |
*/ | |
// Include the helper class to control inclusion | |
class Fishpig_Wordpress_Helper_LegacyHacks extends Fishpig_Wordpress_Helper_Abstract {} | |
$resourceDbFile = implode(DS, array('app', 'code', 'core', 'Mage', 'Core', 'Model', 'Resource', 'Db', 'Abstract.php')); | |
if (!is_file($resourceDbFile) && !is_file('../' . $resourceDbFile)) { | |
// Declare legacy hack classes | |
abstract class Mage_Core_Model_Resource_Db_Abstract extends Mage_Core_Model_Mysql4_Abstract {} | |
abstract class Mage_Core_Model_Resource_Db_Collection_Abstract extends Mage_Core_Model_Mysql4_Collection_Abstract {} | |
} | |
$topMenuFile = implode(DS, array('app', 'code', 'core', 'Mage', 'Page', 'Block', 'Html', 'Topmenu.php')); | |
if (!is_file($topMenuFile) && !is_file('../' . $topMenuFile)) { | |
class Mage_Page_Block_Html_Topmenu extends Mage_Core_Block_Template {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment