Esempio n. 1
0
 /**
  * Return customer quote items
  *
  * @return array
  */
 public function getItems()
 {
     if ($this->getCustomQuote()) {
         return $this->getCustomQuote()->getAllVisibleItems();
     }
     return parent::getItems();
 }
Esempio n. 2
0
 /**
  * Return customer quote items
  *
  * @return array
  */
 public function getItems()
 {
     if ($this->getCustomItems()) {
         return $this->getCustomItems();
     }
     return parent::getItems();
 }