34 lines
632 B
PHP
34 lines
632 B
PHP
<?php
|
|
|
|
/**
|
|
* Class IMojeConfirmationModuleFrontController
|
|
*
|
|
* @property bool display_column_left
|
|
* @property bool display_column_right
|
|
*/
|
|
class IMojeConfirmationModuleFrontController extends ModuleFrontController
|
|
{
|
|
|
|
/**
|
|
* Initialize controller.
|
|
*
|
|
* @throws PrestaShopException
|
|
* @see FrontController::init()
|
|
*/
|
|
public function init()
|
|
{
|
|
$this->display_column_left = false;
|
|
$this->display_column_right = false;
|
|
parent::init();
|
|
}
|
|
|
|
/**
|
|
* @throws PrestaShopException
|
|
*/
|
|
public function initContent()
|
|
{
|
|
parent::initContent();
|
|
$this->setTemplate(IMoje::buildTemplatePath('confirmation', 'front'));
|
|
}
|
|
}
|