PaylaterCancelModuleFrontController::initContent()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
1
<?php
2
/**
3
 * This file is part of the official Aplazame module for PrestaShop.
4
 *
5
 * @author    Aplazame <[email protected]>
6
 * @copyright 2015-2016 Aplazame
7
 * @license   see file: LICENSE
8
 */
9
10
/**
11
 * @property Aplazame module
12
 */
13
class PaylaterCancelModuleFrontController extends ModuleFrontController
14
{
15
    public function setMedia()
16
    {
17
        parent::setMedia();
18
    }
19
    public function init()
20
    {
21
        parent::init();
22
        $this->display_column_left = false;
23
        $this->display_column_right = false;
24
    }
25
    public function initContent()
26
    {
27
        parent::initContent();
28
        return $this->setTemplate('confirmation_failure.tpl');
29
    }
30
}
31