55 lines
2.1 KiB
PHP
55 lines
2.1 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* This file is part of the Thelia package. */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : dev@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* For the full copyright and license information, please view the LICENSE.txt */
|
|
/* file that was distributed with this source code. */
|
|
/*************************************************************************************/
|
|
|
|
namespace Thelia\Cart;
|
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
|
use Thelia\Core\HttpFoundation\Request;
|
|
use Thelia\Model\CartQuery;
|
|
use Thelia\Model\Cart as CartModel;
|
|
use Thelia\Model\ConfigQuery;
|
|
use Thelia\Model\Customer;
|
|
use Thelia\Core\HttpFoundation\Session\Session;
|
|
use Thelia\Core\Event\TheliaEvents;
|
|
use Thelia\Core\Event\Cart\CartEvent;
|
|
|
|
/**
|
|
* managed cart
|
|
*
|
|
* Trait CartTrait
|
|
* @package Thelia\Cart
|
|
* @author Manuel Raynaud <manu@raynaud.io>
|
|
*
|
|
* @deprecated CartTrait is deprecated, please use Session::getSessionCart method instead
|
|
*/
|
|
trait CartTrait
|
|
{
|
|
/**
|
|
*
|
|
* search if cart already exists in session. If not try to create a new one or duplicate an old one.
|
|
*
|
|
* @param EventDispatcherInterface $dispatcher the event dispatcher
|
|
* @param \Symfony\Component\HttpFoundation\Request $request
|
|
* @deprecated use Session::getSessionCart method instead
|
|
* @return \Thelia\Model\Cart
|
|
*/
|
|
public function getCart(EventDispatcherInterface $dispatcher, Request $request)
|
|
{
|
|
trigger_error(
|
|
'CartTrait is deprecated, please use Session::getSessionCart method instead',
|
|
E_USER_DEPRECATED
|
|
);
|
|
|
|
return $request->getSession()->getSessionCart($dispatcher);
|
|
}
|
|
}
|