Esempio n. 1
0
 /**
  * Override cache loading mechanism
  * Allows us to not load block if WP database details are not valid
  *
  * @retrun string|false
  */
 protected function _loadCache()
 {
     if (Mage::helper('wordpress/database')->isQueryable()) {
         return parent::_loadCache();
     }
     return '';
 }