Derek Allard | efb37ca | 2009-09-16 09:47:52 +0000 | [diff] [blame] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 2 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
| 3 | <head> |
| 4 | |
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 6 | <title>Shopping Cart Class : CodeIgniter User Guide</title> |
| 7 | |
| 8 | <style type='text/css' media='all'>@import url('../userguide.css');</style> |
| 9 | <link rel='stylesheet' type='text/css' media='all' href='../userguide.css' /> |
| 10 | |
| 11 | <script type="text/javascript" src="../nav/nav.js"></script> |
| 12 | <script type="text/javascript" src="../nav/prototype.lite.js"></script> |
| 13 | <script type="text/javascript" src="../nav/moo.fx.js"></script> |
| 14 | <script type="text/javascript" src="../nav/user_guide_menu.js"></script> |
| 15 | |
| 16 | <meta http-equiv='expires' content='-1' /> |
| 17 | <meta http-equiv= 'pragma' content='no-cache' /> |
| 18 | <meta name='robots' content='all' /> |
| 19 | <meta name='author' content='ExpressionEngine Dev Team' /> |
| 20 | <meta name='description' content='CodeIgniter User Guide' /> |
| 21 | |
| 22 | </head> |
| 23 | <body> |
| 24 | |
| 25 | <!-- START NAVIGATION --> |
| 26 | <div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div> |
| 27 | <div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div> |
| 28 | <div id="masthead"> |
| 29 | <table cellpadding="0" cellspacing="0" border="0" style="width:100%"> |
| 30 | <tr> |
| 31 | <td><h1>CodeIgniter User Guide Version 1.7.2</h1></td> |
| 32 | <td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td> |
| 33 | </tr> |
| 34 | </table> |
| 35 | </div> |
| 36 | <!-- END NAVIGATION --> |
| 37 | |
| 38 | |
| 39 | <!-- START BREADCRUMB --> |
| 40 | <table cellpadding="0" cellspacing="0" border="0" style="width:100%"> |
| 41 | <tr> |
| 42 | <td id="breadcrumb"> |
| 43 | <a href="http://codeigniter.com/">CodeIgniter Home</a> › |
| 44 | <a href="../index.html">User Guide Home</a> › |
| 45 | Shopping Cart Class |
| 46 | </td> |
| 47 | <td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" /> <input type="submit" class="submit" name="sa" value="Go" /></form></td> |
| 48 | </tr> |
| 49 | </table> |
| 50 | <!-- END BREADCRUMB --> |
| 51 | |
| 52 | <br clear="all" /> |
| 53 | |
| 54 | |
| 55 | <!-- START CONTENT --> |
| 56 | <div id="content"> |
| 57 | |
| 58 | |
| 59 | <h1>Shopping Cart Class</h1> |
| 60 | |
| 61 | <p>The Cart Class permits items to be added to a session that stays active while a user is browsing your site. |
| 62 | These items can be retrieved and displayed in a standard "shopping cart" format, allowing the user to update the quantity or remove items from the cart.</p> |
| 63 | |
| 64 | <p>Please note that the Cart Class ONLY provides the core "cart" functionality. It does not provide shipping, credit card authorization, or other processing components.</p> |
| 65 | |
| 66 | |
| 67 | <h2>Initializing the Shopping Cart Class</h2> |
| 68 | |
| 69 | <p><strong>Important:</strong> The Cart class utilizes CodeIgniter's |
| 70 | <a href="sessions.html">Session Class</a> to save the cart information to a database, so before using the Cart class you must set up a database table |
| 71 | as indicated in the <a href="sessions.html">Session Documentation</a> , and set the session preferences in your <kbd>appliction/config/config.php</kbd> file to utilize a database.</p> |
| 72 | |
| 73 | <p>To initialize the Shopping Cart Class in your controller constructor, use the <dfn>$this->load->library</dfn> function:</p> |
| 74 | |
| 75 | <code>$this->load->library('cart');</code> |
| 76 | <p>Once loaded, the Cart object will be available using: <dfn>$this->cart</dfn></p> |
| 77 | |
| 78 | <p class="important"><strong>Note:</strong> The Cart Class will load and initialize the Session Class automatically, so unless you are using sessions elsewhere in your application, you do not need to load the Session class.</p> |
| 79 | |
| 80 | <h2>Adding an Item to The Cart</h2> |
| 81 | |
| 82 | <p>To add an item to the shopping cart, simply pass an array with the product information to the <dfn>$this->cart->insert()</dfn> function, as shown below:</p> |
| 83 | |
| 84 | <code> |
| 85 | $data = array(<br /> |
| 86 | 'id' => 'sku_123ABC',<br /> |
| 87 | 'qty' => 1,<br /> |
| 88 | 'price' => 39.95,<br /> |
| 89 | 'name' => 'T-Shirt',<br /> |
| 90 | 'options' => array('Size' => 'L', 'Color' => 'Red')<br /> |
| 91 | );<br /> |
| 92 | <br /> |
| 93 | |
| 94 | $this->cart->insert($data); |
| 95 | |
| 96 | </code> |
| 97 | |
| 98 | <p class="important"><strong>Important:</strong> The first four array indexes above (<dfn>id</dfn>, <dfn>qty</dfn>, <dfn>price</dfn>, and <dfn>name</dfn>) are <strong>required</strong>. |
| 99 | If you omit any of them the data will not be saved to the cart. The fifth index (<dfn>options</dfn>) is optional. |
| 100 | It is intended to be used in cases where your product has options associated with it. Use an array for options, as shown above.</p> |
| 101 | |
| 102 | <p>The five reserved indexes are:</p> |
| 103 | |
| 104 | <ul> |
| 105 | <li><strong>id</strong> - Each product in your store must have a unique identifier. Typically this will be an "sku" or other such identifier.</li> |
| 106 | <li><strong>qty</strong> - The quantity being purchased. |
| 107 | <li><strong>price</strong> - The price of the item. |
| 108 | <li><strong>name</strong> - The name of the item. |
| 109 | <li><strong>options</strong> - Any additional attributes that are needed to identify the product. These must be passed via an array. |
| 110 | </ul> |
| 111 | |
| 112 | <p>In addition to the five indexes above, there are two reserved words: <dfn>rowid</dfn> and <dfn>subtotal</dfn>. These are used internally by the Cart class, so |
| 113 | please do NOT use those words as index names when inserting data into the cart.</p> |
| 114 | |
| 115 | <p>Your array may contain additional data. Anything you include in your array will be stored in the session. However, it is best to standardize your data among |
| 116 | all your products in order to make displaying the information in a table easier.</p> |
| 117 | |
| 118 | |
| 119 | <h2>Adding Multiple Items to The Cart</h2> |
| 120 | |
| 121 | <p>By using a multi-dimensional array, as shown below, it is possible to add multiple products to the cart in one action. This is useful in cases where you wish to allow |
| 122 | people to select from among several items on the same page.</p> |
| 123 | |
| 124 | |
| 125 | <code> |
| 126 | $data = array(<br /> |
| 127 | |
| 128 | array(<br /> |
| 129 | 'id' => 'sku_123ABC',<br /> |
| 130 | 'qty' => 1,<br /> |
| 131 | 'price' => 39.95,<br /> |
| 132 | 'name' => 'T-Shirt',<br /> |
| 133 | 'options' => array('Size' => 'L', 'Color' => 'Red')<br /> |
| 134 | ),<br /> |
| 135 | |
| 136 | array(<br /> |
| 137 | 'id' => 'sku_567ZYX',<br /> |
| 138 | 'qty' => 1,<br /> |
| 139 | 'price' => 9.95,<br /> |
| 140 | 'name' => 'Coffee Mug'<br /> |
| 141 | ),<br /> |
| 142 | |
| 143 | array(<br /> |
| 144 | 'id' => 'sku_965QRS',<br /> |
| 145 | 'qty' => 1,<br /> |
| 146 | 'price' => 29.95,<br /> |
| 147 | 'name' => 'Shot Glass'<br /> |
| 148 | )<br /> |
| 149 | |
| 150 | );<br /> |
| 151 | <br /> |
| 152 | |
| 153 | $this->cart->insert($data); |
| 154 | |
| 155 | </code> |
| 156 | |
| 157 | |
| 158 | |
| 159 | |
| 160 | <h2>Displaying the Cart</h2> |
| 161 | |
| 162 | <p>To display the cart you will create a <a href="../general/views.html">view file</a> with code similar to the one shown below.</p> |
| 163 | |
| 164 | <p>Please note that this example uses the <a href="../helpers/form_helper.html">form helper</a>.</p> |
| 165 | |
| 166 | |
| 167 | <textarea class="textarea" style="width:100%" cols="50" rows="55"> |
| 168 | <?php echo form_open('path/to/controller/update/function'); ?> |
| 169 | |
| 170 | <table cellpadding="6" cellspacing="1" style="width:100%" border="0"> |
| 171 | |
| 172 | <tr> |
| 173 | <th>QTY</th> |
| 174 | <th>Item Description</th> |
| 175 | <th style="text-align:right">Item Price</th> |
| 176 | <th style="text-align:right">Sub-Total</th> |
| 177 | </tr> |
| 178 | |
| 179 | <?php $i = 1; ?> |
| 180 | |
| 181 | <?php foreach($this->cart->contents() as $items): ?> |
| 182 | |
| 183 | <?php echo form_hidden($i.'[rowid]', $items['rowid']); ?> |
| 184 | |
| 185 | <tr> |
| 186 | <td><?php echo form_input(array('name' => $i.'[qty]', 'value' => $items['qty'], 'maxlength' => '3', 'size' => '5')); ?></td> |
| 187 | <td> |
| 188 | <?php echo $items['name']; ?> |
| 189 | |
| 190 | <?php if ($this->cart->has_options($items['rowid']) == TRUE): ?> |
| 191 | |
| 192 | <p> |
| 193 | <?php foreach ($this->cart->product_options($items['rowid']) as $option_name => $option_value): ?> |
| 194 | |
| 195 | <strong><?php echo $option_name; ?>:</strong> <?php echo $option_value; ?><br /> |
| 196 | |
| 197 | <?php endforeach; ?> |
| 198 | </p> |
| 199 | |
| 200 | <?php endif; ?> |
| 201 | |
| 202 | </td> |
| 203 | <td style="text-align:right"><?php echo $this->cart->format_number($items['price']); ?></td> |
| 204 | <td style="text-align:right">$<?php echo $this->cart->format_number($items['subtotal']); ?></td> |
| 205 | </tr> |
| 206 | |
| 207 | <?php $i++; ?> |
| 208 | |
| 209 | <?php endforeach; ?> |
| 210 | |
| 211 | <tr> |
| 212 | <td colspan="2"> </td> |
| 213 | <td class="right"><strong>Total</strong></td> |
| 214 | <td class="right">$<?php echo $this->cart->format_number($this->cart->total()); ?></td> |
| 215 | </tr> |
| 216 | |
| 217 | </table> |
| 218 | |
| 219 | <p><?php echo form_submit('', 'Update your Cart'); ?></p> |
| 220 | </textarea> |
| 221 | |
| 222 | |
| 223 | |
| 224 | |
| 225 | <h2>Updating The Cart</h2> |
| 226 | |
| 227 | <p>To update the information in your cart, you must pass an array containing the <kbd>Row ID</kbd> and quantity to the <dfn>$this->cart->update()</dfn> function:</p> |
| 228 | |
| 229 | <p class="important"><strong>Note:</strong> If the quantity is set to zero, the item will be removed from the cart.</p> |
| 230 | |
| 231 | <code> |
| 232 | $data = array(<br /> |
| 233 | 'rowid' => 'b99ccdf16028f015540f341130b6d8ec',<br /> |
| 234 | 'qty' => 3<br /> |
| 235 | );<br /> |
| 236 | <br /> |
| 237 | |
| 238 | $this->cart->update($data); |
| 239 | <br /><br /> |
| 240 | // Or a multi-dimensional array<br /><br /> |
| 241 | $data = array(<br /> |
| 242 | |
| 243 | array(<br /> |
| 244 | 'rowid' => 'b99ccdf16028f015540f341130b6d8ec',<br /> |
| 245 | 'qty' => 3<br /> |
| 246 | ),<br /> |
| 247 | |
| 248 | array(<br /> |
| 249 | 'rowid' => 'xw82g9q3r495893iajdh473990rikw23',<br /> |
| 250 | 'qty' => 4<br /> |
| 251 | ),<br /> |
| 252 | |
| 253 | array(<br /> |
| 254 | 'rowid' => 'fh4kdkkkaoe30njgoe92rkdkkobec333',<br /> |
| 255 | 'qty' => 2<br /> |
| 256 | )<br /> |
| 257 | |
| 258 | );<br /> |
| 259 | <br /> |
| 260 | |
| 261 | $this->cart->update($data); |
| 262 | |
| 263 | |
| 264 | |
| 265 | |
| 266 | </code> |
| 267 | |
| 268 | <p><strong>What is a Row ID?</strong> The <kbd>row ID</kbd> is a unique identifier that is generated by the cart code when an item is added to the cart. The reason a |
| 269 | unique ID is created is so that identical products with different options can be managed by the cart.</p> |
| 270 | |
| 271 | <p>For example, let's say someone buys two identical t-shirts (same product ID), but in different sizes. The product ID (and other attributes) will be |
| 272 | identical for both sizes because it's the same shirt. The only difference will be the size. The cart must therefore have a means of identifying this |
| 273 | difference so that the two sizes of shirts can be managed independently. It does so by creating a unique "row ID" based on the product ID and any options associated with it.</p> |
| 274 | |
| 275 | <p>In nearly all cases, updating the cart will be something the user does via the "view cart" page, so as a developer, it is unlikely that you will ever have to concern yourself |
| 276 | with the "row ID", other then making sure your "view cart" page contains this information in a hidden form field, and making sure it gets passed to the update |
| 277 | function when the update form is submitted. Please examine the construction of the "view cart" page above for more information.</p> |
| 278 | |
| 279 | |
| 280 | |
| 281 | <p> <br /></p> |
| 282 | |
| 283 | |
| 284 | <h1>Function Reference</h1> |
| 285 | |
| 286 | <h2>$this->cart->insert();</h2> |
| 287 | |
| 288 | <p>Permits you to add items to the shopping cart, as outlined above.</p> |
| 289 | |
| 290 | |
| 291 | <h2>$this->cart->update();</h2> |
| 292 | |
| 293 | <p>Permits you to update items in the shopping cart, as outlined above.</p> |
| 294 | |
| 295 | |
| 296 | <h2>$this->cart->total();</h2> |
| 297 | |
| 298 | <p>Displays the total amount in the cart.</p> |
| 299 | |
| 300 | |
| 301 | <h2>$this->cart->total_items();</h2> |
| 302 | |
| 303 | <p>Displays the total number of items in the cart.</p> |
| 304 | |
| 305 | |
| 306 | <h2>$this->cart->contents();</h2> |
| 307 | |
| 308 | <p>Returns an array containing everything in the cart.</p> |
| 309 | |
| 310 | |
| 311 | |
| 312 | <h2>$this->cart->has_options(rowid);</h2> |
| 313 | |
| 314 | <p>Returns TRUE (boolean) if a particular row in the cart contains options. This function is designed to be used in a loop with <dfn>$this->cart->contents()</dfn>, since you must pass the <kbd>rowid</kbd> to this function, as shown in the <dfn>Displaying the Cart</dfn> example above.</p> |
| 315 | |
| 316 | |
| 317 | <h2>$this->cart->options(rowid);</h2> |
| 318 | |
| 319 | <p>Returns an array of options for a particular product. This function is designed to be used in a loop with <dfn>$this->cart->contents()</dfn>, since you must pass the <kbd>rowid</kbd> to this function, as shown in the <dfn>Displaying the Cart</dfn> example above.</p> |
| 320 | |
| 321 | |
| 322 | |
| 323 | <h2>$this->cart->destroy();</h2> |
| 324 | |
| 325 | <p>Permits you to destroy the cart. This function will likely be called when you are finished processing the customer's order.</p> |
| 326 | |
| 327 | |
| 328 | |
| 329 | |
| 330 | </div> |
| 331 | <!-- END CONTENT --> |
| 332 | |
| 333 | |
| 334 | <div id="footer"> |
| 335 | <p> |
| 336 | Previous Topic: <a href="calendar.html">Calendar Class</a> |
| 337 | · |
| 338 | <a href="#top">Top of Page</a> · |
| 339 | <a href="../index.html">User Guide Home</a> · |
| 340 | Next Topic: <a href="config.html">Config Class</a> |
| 341 | </p> |
Derek Jones | 7f3719f | 2010-01-05 13:35:37 +0000 | [diff] [blame^] | 342 | <p><a href="http://codeigniter.com">CodeIgniter</a> · Copyright © 2006-2010 · <a href="http://ellislab.com/">Ellislab, Inc.</a></p> |
Derek Allard | efb37ca | 2009-09-16 09:47:52 +0000 | [diff] [blame] | 343 | </div> |
| 344 | |
| 345 | </body> |
Rick Ellis | ac69d42 | 2009-02-17 02:28:10 +0000 | [diff] [blame] | 346 | </html> |