Ejemplo n.º 1
0
 /**
  * Verifies the fields in a submitted form.
  * Then adds the item to the users cart 
  * 
  * @return unknown_type
  */
 function addToCart()
 {
     Tienda::load('TiendaControllerProducts', 'controllers.products', array('site' => 'site', 'type' => 'components', 'ext' => 'com_tienda'));
     $controller = new TiendaControllerProducts();
     $controller->addToCart();
     $controller->redirect();
 }