You are here

function commerce_popup_cart_line_items in Commerce Popup Cart 7

1 call to commerce_popup_cart_line_items()
commerce_popup_cart_admin_form in ./commerce_popup_cart.admin.inc
Page callback for commerce popup cart configuration form.

File

./commerce_popup_cart.module, line 130

Code

function commerce_popup_cart_line_items() {
  $line_items = array();
  $line_item_types = commerce_line_item_types();
  foreach ($line_item_types as $line_item) {
    $line_items[$line_item['type']] = t($line_item['name']);
  }
  return $line_items;
}