Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public function getProductsPosition()
  2. {
  3. if (!$this->getId()) {
  4. return array();
  5. }
  6.  
  7. $array = $this->getData('products_position');
  8. if (is_null($array)) {
  9. $array = $this->getResource()->getProductsPosition($this);
  10. $this->setData('products_position', $array);
  11. }
  12. return $array;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement