Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. $this->load->library("notification");
  2.  
  3. $notifitems = gather_info_notif($uid,$token);
  4. $this->notification->initialize($notifitems['user_info'],$notifitems['loc_info']);
  5.  
  6. //order
  7. $this->notification->item_ordered($user_id,$order_id);
  8.  
  9. //order shipped
  10. $this->notification->item_shipped($user_id,$order_id)
  11.  
  12. //order cancelled
  13. $this->notification->item_cancelled($user_id,$order_id)
  14.  
  15. //order completed
  16. $this->notification->order_completed($user_id,$order_id)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement