Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. if ($product_info['quantity'] <= 0) {
  2. $data['stock'] = $product_info['stock_status'];
  3. } elseif ($product_info['quantity'] <= 10) {
  4. $data['stock'] = $product_info['quantity'];
  5.  
  6. } else {
  7. $data['stock'] = $this->language->get('text_instock');
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement