Advertisement
Guest User

Session Lengkap

a guest
May 16th, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.51 KB | None | 0 0
  1. Jcart Object
  2. (
  3.     [config] => Array
  4.         (
  5.             [jcartPath] => jcart/
  6.             [checkoutPath] => checkout.php
  7.             [item] => Array
  8.                 (
  9.                     [id] => my-item-id
  10.                     [name] => my-item-name
  11.                     [price] => my-item-price
  12.                     [qty] => my-item-qty
  13.                     [url] => my-item-url
  14.                     [add] => my-add-button
  15.                 )
  16.  
  17.             [paypal] => Array
  18.                 (
  19.                     [id] => seller_1282188508_biz@conceptlogic.com
  20.                     [https] => 1
  21.                     [sandbox] =>
  22.                     [returnUrl] =>
  23.                     [notifyUrl] =>
  24.                 )
  25.  
  26.             [currencyCode] => USD
  27.             [csrfToken] =>
  28.             [text] => Array
  29.                 (
  30.                     [cartTitle] => Shopping Cart
  31.                     [singleItem] => Item
  32.                     [multipleItems] => Items
  33.                     [subtotal] => Subtotal
  34.                     [update] => update
  35.                     [checkout] => checkout
  36.                     [checkoutPaypal] => Checkout with PayPal
  37.                     [removeLink] => remove
  38.                     [emptyButton] => empty
  39.                     [emptyMessage] => Your cart is empty!
  40.                     [itemAdded] => Item added!
  41.                     [priceError] => Invalid price format!
  42.                     [quantityError] => Item quantities must be whole numbers!
  43.                     [checkoutError] => Your order could not be processed!
  44.                 )
  45.  
  46.             [button] => Array
  47.                 (
  48.                     [checkout] =>
  49.                     [paypal] =>
  50.                     [update] =>
  51.                     [empty] =>
  52.                 )
  53.  
  54.             [tooltip] => 1
  55.             [decimalQtys] =>
  56.             [decimalPlaces] => 1
  57.             [priceFormat] => Array
  58.                 (
  59.                     [decimals] => 2
  60.                     [dec_point] => .
  61.                     [thousands_sep] => ,
  62.                 )
  63.  
  64.         )
  65.  
  66.     [items:private] => Array
  67.         (
  68.             [0] => 1
  69.         )
  70.  
  71.     [names:private] => Array
  72.         (
  73.             [1] => Soccer Ball
  74.         )
  75.  
  76.     [prices:private] => Array
  77.         (
  78.             [1] => 25.00
  79.         )
  80.  
  81.     [qtys:private] => Array
  82.         (
  83.             [1] => 2
  84.         )
  85.  
  86.     [urls:private] => Array
  87.         (
  88.             [1] =>
  89.         )
  90.  
  91.     [subtotal:private] => 50
  92.     [itemCount:private] => 2
  93. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement