Passed
Push — master ( 3b1e15...43df0a )
by Dmytro
04:55
created

UICheckBoxPanel   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 10
rs 10
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Asymptix\ui\controls;
4
5
/**
6
 * CheckBox Panel UI control class.
7
 *
8
 * @category Asymptix PHP Framework
9
 * @author Dmytro Zarezenko <[email protected]>
10
 * @copyright (c) 2009 - 2016, Dmytro Zarezenko
11
 *
12
 * @git https://github.com/Asymptix/Framework
13
 * @license http://opensource.org/licenses/MIT
14
 */
15
class UICheckBoxPanel extends \Asymptix\ui\UIControl {
16
    /**
17
     * Default checkbox panel HTML template.
18
     */
19
    const DEFAULT_TEMPLATE = "core/ui/templates/controls/ui_checkboxpanel.tpl.php";
20
21
    public function __construct($dataSet = [], $currentValue = null, $attributesList = [], $template = "") {
22
        parent::__construct($attributesList, $template, $dataSet, $currentValue);
23
    }
24
}
25