PaylaterCancelModuleFrontController   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 18
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setMedia() 0 4 1
A init() 0 6 1
A initContent() 0 5 1
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