Exemplo n.º 1
0
 /**
  * Check whether we are using the database or S3 for storing images.
  *
  * @return bool
  */
 public function checkDbUsage()
 {
     if (!parent::checkDbUsage()) {
         return $this->checkS3Usage();
     }
     return $this->_useDb;
 }
Exemplo n.º 2
0
 public function checkDbUsage()
 {
     Mage::log(__METHOD__ . ' ' . $this->_useDb);
     return parent::checkDbUsage();
 }