83 lines
2.1 KiB
PHP
83 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* 2007-2018 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Open Software License (OSL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* https://opensource.org/licenses/OSL-3.0
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2018 PrestaShop SA
|
|
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
abstract class AbstractCheckoutStepCore implements CheckoutStepInterface
|
|
{
|
|
public $step_is_reachable = 0;
|
|
public $step_is_complete = 0;
|
|
public $step_is_current = 0;
|
|
public $step_key;
|
|
private $checkoutProcess;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->context = Context::getContext();
|
|
}
|
|
|
|
public function setCheckoutProcess(CheckoutProcess $checkoutProcess)
|
|
{
|
|
$this->checkoutProcess = $checkoutProcess;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setReachable($step_is_reachable)
|
|
{
|
|
$this->step_is_reachable = $step_is_reachable;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function isReachable()
|
|
{
|
|
return $this->step_is_reachable;
|
|
}
|
|
|
|
public function setComplete($step_is_complete)
|
|
{
|
|
$this->step_is_complete = $step_is_complete;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function isComplete()
|
|
{
|
|
return $this->step_is_complete;
|
|
}
|
|
|
|
public function setCurrent($step_is_current)
|
|
{
|
|
$this->step_is_current = $step_is_current;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function isCurrent()
|
|
{
|
|
return $this->step_is_current;
|
|
}
|
|
}
|