Flag items in basket Is there some sort of global variable that tells us if the items in basket? Log in or register to post a comment. stevetook Posted: May 15, 2012 Comments Answer stevetook on May 15, 2012 function items_on_cart(){ global $user; $cart = commerce_cart_order_load($user->uid); $line_items = count($cart->commerce_line_items) ? true : false; return $line_items; } Log in or register to post a comment. Thank you for posting your Josh Miller on May 15, 2012 Thank you for posting your own answer :) Josh Log in or register to post a comment. Most welcome, it was quite stevetook on May 16, 2012 Most welcome, it was quite urgent thats all. Log in or register to post a comment. Posted this as a snippet in Josh Miller on May 15, 2012 Posted this as a snippet in the User Guide. http://www.drupalcommerce.org/node/3053 Josh Log in or register to post a comment.
Answer stevetook on May 15, 2012 function items_on_cart(){ global $user; $cart = commerce_cart_order_load($user->uid); $line_items = count($cart->commerce_line_items) ? true : false; return $line_items; } Log in or register to post a comment.
Thank you for posting your Josh Miller on May 15, 2012 Thank you for posting your own answer :) Josh Log in or register to post a comment.
Most welcome, it was quite stevetook on May 16, 2012 Most welcome, it was quite urgent thats all. Log in or register to post a comment.
Posted this as a snippet in Josh Miller on May 15, 2012 Posted this as a snippet in the User Guide. http://www.drupalcommerce.org/node/3053 Josh Log in or register to post a comment.
Comments
Answer
function items_on_cart(){
global $user;
$cart = commerce_cart_order_load($user->uid);
$line_items = count($cart->commerce_line_items) ? true : false;
return $line_items;
}
Thank you for posting your
Thank you for posting your own answer :)
Josh
Most welcome, it was quite
Most welcome, it was quite urgent thats all.
Posted this as a snippet in
Posted this as a snippet in the User Guide.
http://www.drupalcommerce.org/node/3053
Josh