30 lines
748 B
PHP
30 lines
748 B
PHP
<?php
|
|
/**
|
|
* For the full copyright and license information, please view the
|
|
* docs/licenses/LICENSE.txt file that was distributed with this source code.
|
|
*/
|
|
use PrestaShop\PrestaShop\Core\Foundation\Templating\RenderableInterface;
|
|
|
|
interface CheckoutStepInterface extends RenderableInterface
|
|
{
|
|
public function getTitle();
|
|
|
|
public function handleRequest(array $requestParameters = []);
|
|
|
|
public function setCheckoutProcess(CheckoutProcess $checkoutProcess);
|
|
|
|
public function isReachable();
|
|
|
|
public function isComplete();
|
|
|
|
public function isCurrent();
|
|
|
|
public function getIdentifier();
|
|
|
|
public function getDataToPersist();
|
|
|
|
public function restorePersistedData(array $data);
|
|
|
|
public function getTemplate();
|
|
}
|