vendor/pimcore/pimcore/bundles/EcommerceFrameworkBundle/CheckoutManager/DeliveryAddress.php line 51

Open in your IDE?
  1. <?php
  2. /**
  3.  * Pimcore
  4.  *
  5.  * This source file is available under two different licenses:
  6.  * - GNU General Public License version 3 (GPLv3)
  7.  * - Pimcore Commercial License (PCL)
  8.  * Full copyright and license information is available in
  9.  * LICENSE.md which is distributed with this source code.
  10.  *
  11.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  12.  *  @license    http://www.pimcore.org/license     GPLv3 and PCL
  13.  */
  14. namespace Pimcore\Bundle\EcommerceFrameworkBundle\CheckoutManager;
  15. /**
  16.  * Sample implementation for delivery address
  17.  */
  18. class DeliveryAddress extends AbstractStep implements CheckoutStepInterface
  19. {
  20.     /**
  21.      * Namespace key
  22.      */
  23.     const PRIVATE_NAMESPACE 'delivery_address';
  24.     /**
  25.      * {@inheritdoc}
  26.      */
  27.     public function getName()
  28.     {
  29.         return 'deliveryaddress';
  30.     }
  31.     /**
  32.      * {@inheritdoc}
  33.      */
  34.     public function commit($data)
  35.     {
  36.         $this->cart->setCheckoutData(self::PRIVATE_NAMESPACEjson_encode($data));
  37.         return true;
  38.     }
  39.     /**
  40.      * {@inheritdoc}
  41.      */
  42.     public function getData()
  43.     {
  44.         $data json_decode($this->cart->getCheckoutData(self::PRIVATE_NAMESPACE));
  45.         return $data;
  46.     }
  47. }